FANNG1 commented on code in PR #9689:
URL: https://github.com/apache/gravitino/pull/9689#discussion_r2752387491
##########
flink-connector/flink/src/test/java/org/apache/gravitino/flink/connector/integration/test/hive/FlinkHiveCatalogIT.java:
##########
@@ -80,15 +89,32 @@
public class FlinkHiveCatalogIT extends FlinkCommonIT {
private static final String DEFAULT_HIVE_CATALOG =
"test_flink_hive_schema_catalog";
private static final String FLINK_USER_NAME = "gravitino";
+ private static final String MYSQL_DATABASE =
TestDatabaseName.FLINK_HIVE_CATALOG_IT.name();
private static org.apache.gravitino.Catalog hiveCatalog;
private static String hiveConfDir;
+ private String mysqlUrl;
+ private String mysqlUsername;
+ private String mysqlPassword;
+ private String mysqlDriver;
+ private ContainerSuite containerSuite;
+
@Override
protected boolean supportsPrimaryKey() {
return false;
}
+ @Override
+ protected boolean supportColumnOperation() {
+ return false;
+ }
+
+ @Override
+ protected boolean supportTablePropertiesOperation() {
+ return false;
Review Comment:
This flag is used to disable the tests in the Flink common integration test.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]