diff --git a/sqllineage.py b/sqllineage.py index c4af145..78c2e1d 100644 --- a/sqllineage.py +++ b/sqllineage.py @@ -26,6 +26,7 @@ def convert_sql(): log.info("SQL hologres_connection: %s", hologres_connection) try: parsed_result=parse_create_table_sql(sql_input,hologres_connection) + print(parsed_result) result = { 'parsed_result': parsed_result, 'message': 'SQL processed successfully.' diff --git a/templates/index.html b/templates/index.html index 61c0dc3..f6d706a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,147 +4,75 @@ SQL Processor - -
-

SQL Processor

-
- - - - -
-
-
+
+

SQL Processor

+
+ + + + +
+ +
diff --git a/utils/sql_parse.py b/utils/sql_parse.py index caf81b1..5462c05 100644 --- a/utils/sql_parse.py +++ b/utils/sql_parse.py @@ -11,10 +11,10 @@ CREATE EXTERNAL TABLE IF NOT EXISTS {table_name} ) STORED BY 'com.aliyun.odps.jdbc.JdbcStorageHandler' -- ip设置成经典网络ip 库 加Schema 加表名 -location 'jdbc:postgresql://{hologres_connection}/{schema}?ApplicationName=MaxCompute¤tSchema={schema}&preferQueryMode=simple&useSSL=false&table={table_name}/' +location 'jdbc:postgresql://hgprecn-cn-i7m2ssubq004-cn-hangzhou-internal.hologres.aliyuncs.com:80/sdk_statis?ApplicationName=MaxCompute¤tSchema={schema}&preferQueryMode=simple&useSSL=false&table={table_name}/' TBLPROPERTIES ( -'mcfed.mapreduce.jdbc.driver.class'='org.postgresql.Driver', -'odps.federation.jdbc.target.db.type'='holo', + 'mcfed.mapreduce.jdbc.driver.class'='org.postgresql.Driver', + 'odps.federation.jdbc.target.db.type'='holo', -- 格式为:MaxCompute字段1 : "Hologres字段1",MaxCompute字段2 : "Hologres字段2" 'odps.federation.jdbc.colmapping'='{colmapping}' ); @@ -70,6 +70,10 @@ def parse_create_table_sql(create_table_sql, hologres_connection): # 如果是TEXT类型,则转换为STRING if column_type == 'TEXT': column_type = 'STRING' + if column_type == 'DECIMAL': + column_type = 'DECIMAL(20,8)' + # if column_type == 'INT': + # column_type = 'BIGINT' columns.append(column_name + " " + column_type) colmapping.append(column_name + ":" + column_name) # 将columns,colmapping转换成字符串用,分割