We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bfe7c4 commit b4f8618Copy full SHA for b4f8618
src/main/java/com/tencent/cloud/oceanus/sink/LoggerTableSinkFactory.java
@@ -99,6 +99,7 @@ public DynamicTableSink createDynamicTableSink(Context context) {
99
CatalogTable table = null;
100
try {
101
Method method = clazz.getDeclaredMethod("getCatalogTable");
102
+ method.setAccessible(true);
103
table =
104
(CatalogTable)
105
method.invoke(context); // to be compatible with older Flink versions
0 commit comments