shashihoushengqia commented on issue #9374: URL: https://github.com/apache/gravitino/issues/9374#issuecomment-3611954506
> [@shashihoushengqia](https://github.com/shashihoushengqia) could you run `select * from mysql_catalog.db_dev.tab_test01 where update_time >= '2025-12-04 09:07:43';` in the original spark connector without Gravitino? The original spark connector is fine. I used the following two methods in spark and both worked properly: drop table if exists spark_catalog.default.tab_test01; create table if not exists spark_catalog.default.tab_test01 USING JDBC options ( url "jdbc:mysql://192.168.10.51:30002/db_dev", query "select * from mysql_catalog.db_dev.tab_test01 where update_time >= '2025-12-04 09:07:43'", user "***", password "***" ) ; select * from spark_catalog.default.tab_test01; drop table if exists spark_catalog.default.tab_test01; create table if not exists spark_catalog.default.tab_test01 USING JDBC options ( url "jdbc:mysql://192.168.10.51:30002/db_dev", dbtable "tab_test01", user "***", password "***" ) ; select * from spark_catalog.default.tab_test01 where update_time >= '2025-12-04 09:07:43'; -- 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]
