Skip to content

Commit 66a6e8f

Browse files
author
chengluo
committed
feat: use + operator for MSSQL for older version support & update version
1 parent e33878f commit 66a6e8f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

server/api-service/openblocks-plugins/mssqlPlugin/src/main/java/com/openblocks/plugin/mssql/util/MssqlStructureParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class MssqlStructureParser {
2727
public static final String COLUMNS_QUERY = """
2828
SELECT
2929
table_schema as "table_schema",
30-
concat(table_schema, '.', table_name) as "table_name",
30+
table_schema + '.' + table_name as "table_name",
3131
column_name as "column_name",
3232
data_type as "column_type",
3333
ordinal_position as "ordinal_position",

server/api-service/openblocks-server/src/main/resources/application-openblocks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ common:
3535
security:
3636
cors-allowed-domains:
3737
- '*'
38-
version: 1.1.7
38+
version: 1.1.8
3939
block-hound-enable: false
4040

4141
material:

server/api-service/openblocks-server/src/main/resources/selfhost/ce/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ common:
2929
domain:
3030
default-value: openblocks.dev
3131
cloud: false
32-
version: 1.1.7
32+
version: 1.1.8
3333
block-hound-enable: false
3434
js-executor:
3535
host: ${JS_EXECUTOR_URI:http://127.0.0.1:6060}

0 commit comments

Comments
 (0)