pan3793 commented on code in PR #7029: URL: https://github.com/apache/kyuubi/pull/7029#discussion_r2062385761
########## kyuubi-server/src/main/resources/sql/postgresql/001-KYUUBI-7028.postgresql.sql: ########## @@ -0,0 +1,31 @@ +SELECT '< KYUUBI-7028: Persist Kubernetes metadata into metastore' AS ' '; + +CREATE TABLE IF NOT EXISTS k8s_engine_info( + key_id bigserial PRIMARY KEY, + identifier varchar(36) NOT NULL, + context varchar(32), + namespace varchar(255), + pod_name varchar(255) NOT NULL, + pod_state varchar(32), + container_state text, + engine_id varchar(128), + engine_name text, + engine_state varchar(32), + engine_error text, + update_time bigint NOT NULL + ); Review Comment: super nit: ```suggestion ); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org