Skip to content

Commit

Permalink
[INLONG-9532][Sort] Fix the wrong params for HudiExtractNode (#9535)
Browse files Browse the repository at this point in the history
  • Loading branch information
dockerzhang authored Dec 27, 2023
1 parent 452b326 commit 66437de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ public Map<String, String> tableOptions() {
options.put(HUDI_OPTION_DEFAULT_PATH, path);

// read options
options.put(READ_START_COMMIT, String.valueOf(readStreamingSkipCompaction));
options.put(READ_STREAMING_SKIP_COMPACT, readStartCommit);
options.put(READ_START_COMMIT, readStartCommit);
options.put(READ_STREAMING_SKIP_COMPACT, String.valueOf(readStreamingSkipCompaction));

options.put(HUDI_OPTION_DATABASE_NAME, dbName);
options.put(HUDI_OPTION_TABLE_NAME, tableName);
Expand Down

0 comments on commit 66437de

Please sign in to comment.