Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

补充初始化脚本init.sql中缺失的数据语句 #1172

Merged
merged 10 commits into from
Apr 23, 2024
4 changes: 4 additions & 0 deletions sql/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1832,6 +1832,10 @@ INSERT INTO dict (dict_code, dict_name, dict_value, dict_desc, type, sort, data_
gmt_create, gmt_modified, is_deleted)
VALUES ('component_datasource_mapping', '3', '80', null, 18, 1, 'STRING', 'TDH 6.x', 0, '2023-04-01 10:19:00',
'2023-04-01 10:19:00', 0);
INSERT INTO dict (dict_code, dict_name, dict_value, dict_desc, type, sort, data_type, depend_name, is_default,
gmt_create, gmt_modified, is_deleted)
VALUES ('spark_version', '3.2', '320', null, 2, 1, 'INTEGER', '', 1, now(),now(), 0);

COMMIT;

-- ----------------------------
Expand Down
Loading