Skip to content

Commit

Permalink
[FLINK] fix SyncDatabase bug (#553)
Browse files Browse the repository at this point in the history
Signed-off-by: ChenYunHey <1908166778@qq.com>
  • Loading branch information
ChenYunHey authored Oct 25, 2024
1 parent bb19636 commit d233ac0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public static void xsyncToPg(StreamExecutionEnvironment env) throws SQLException
coulmns.append("`").append(fieldNames[i]).append("` ").append("VARCHAR");
break;
case "FLOAT8":
coulmns.append("`").append(fieldNames[i]).append("`").append("DOUBLE");
coulmns.append("`").append(fieldNames[i]).append("` ").append("DOUBLE");
break;
default:
coulmns.append("`").append(fieldNames[i]).append("` ").append(stringFieldsTypes[i]);
Expand Down

0 comments on commit d233ac0

Please sign in to comment.