Skip to content

Commit

Permalink
[flink] create table validate options
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhuoyu committed Aug 7, 2024
1 parent b0adcdf commit 1fa3b37
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ private static Set<String> getValidOptions() {
try {
Class<?> rocksDBOptionsClass = Class.forName("org.apache.paimon.lookup.RocksDBOptions");
rocksDBOptionsFields = Stream.of(rocksDBOptionsClass.getFields());
} catch (ClassNotFoundException e) {
} catch (Exception e) {
// RocksDBOptions class not found.
rocksDBOptionsFields = Stream.empty();
}

Expand Down

0 comments on commit 1fa3b37

Please sign in to comment.