Skip to content

Commit 40b55d4

Browse files
committed
change kingbase bit type with boolean type process mode
1 parent f6a0c41 commit 40b55d4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tis-datax/tis-datax-kingbase-plugin/src/main/java/com/qlangtech/tis/plugin/ds/kingbase/KingBaseDataSourceFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ protected DataType createColDataType(String colName, String typeName, int dbColT
8787
DataType fix = type.accept(new DataType.DefaultTypeVisitor<DataType>() {
8888
@Override
8989
public DataType bitType(DataType type) {
90-
if (StringUtils.lastIndexOfIgnoreCase(type.typeName, "bool") > -1) {
90+
// if (StringUtils.lastIndexOfIgnoreCase(type.typeName, "bool") > -1) {
9191
return DataType.create(Types.BOOLEAN, type.typeName, type.getColumnSize());
92-
}
93-
return null;
92+
//}
93+
//return null;
9494
}
9595

9696
@Override

tis-datax/tis-datax-postgresql-plugin/src/main/resources/com/qlangtech/tis/plugin/ds/postgresql/PGDataSourceFactory.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": {
3-
"helpUrl": "https://jdbc.postgresql.org/documentation/80/connect.html"
3+
"helpUrl": "https://jdbc.postgresql.org/documentation/use/"
44
},
55

66
"port": {

0 commit comments

Comments
 (0)