Skip to content

Commit

Permalink
[hotfix] [base] fix TableId.java use identifier decode error with fou…
Browse files Browse the repository at this point in the history
…r quota
  • Loading branch information
GOODBOY008 committed Sep 6, 2023
1 parent 8feb51b commit f95e1e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public byte[] serialize(SourceSplitBase split) throws IOException {
boolean useCatalogBeforeSchema =
SerializerUtils.shouldUseCatalogBeforeSchema(snapshotSplit.getTableId());
out.writeBoolean(useCatalogBeforeSchema);
out.writeUTF(snapshotSplit.getTableId().toString());
out.writeUTF(snapshotSplit.getTableId().toDoubleQuotedString());
out.writeUTF(snapshotSplit.splitId());
out.writeUTF(snapshotSplit.getSplitKeyType().asSerializableString());

Expand Down

0 comments on commit f95e1e9

Please sign in to comment.