hdygxsj commented on code in PR #100: URL: https://github.com/apache/incubator-paimon-webui/pull/100#discussion_r1408709970
########## paimon-web-server/src/main/resources/db/ddl-h2.sql: ########## @@ -105,17 +105,21 @@ CREATE TABLE if not exists `role_menu` CREATE TABLE if not exists `catalog` ( - `id` int(11) not null primary key comment 'id', - `catalog_type` varchar(50) not null comment 'catalog type', - `catalog_name` varchar(100) not null comment 'catalog name', - `warehouse` varchar(200) not null comment 'warehouse', - `hive_uri` varchar(200) comment 'hive uri', - `hive_conf_dir` varchar(100) comment 'catalog name', - `is_delete` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'is delete', - `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'create time', - `update_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'update time' + id int not null comment 'id' + primary key, + catalog_type varchar(50) not null comment 'catalog type', + catalog_name varchar(100) not null comment 'catalog name', + warehouse varchar(200) not null comment 'warehouse', + hive_uri varchar(200) null comment 'hive uri', + hive_conf_dir varchar(100) null comment 'catalog name', + is_delete tinyint(1) default 0 not null comment 'is delete', + create_time datetime default CURRENT_TIMESTAMP null comment 'create time', + update_time datetime default CURRENT_TIMESTAMP null comment 'update time', + options varchar(512) null ) engine = innodb; Review Comment: Added the options field -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
