Skip to content

Commit

Permalink
[HUDI-5221] Make the decision for flink sql bucket index case-insensi…
Browse files Browse the repository at this point in the history
…tive (#7207)
  • Loading branch information
danny0405 authored Nov 16, 2022
1 parent 6b0b03b commit 7e7b3a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static boolean isPartitionedTable(Configuration conf) {
}

public static boolean isBucketIndexType(Configuration conf) {
return conf.getString(FlinkOptions.INDEX_TYPE).equals(HoodieIndex.IndexType.BUCKET.name());
return conf.getString(FlinkOptions.INDEX_TYPE).equalsIgnoreCase(HoodieIndex.IndexType.BUCKET.name());
}

/**
Expand Down

0 comments on commit 7e7b3a8

Please sign in to comment.