danhuawang opened a new issue, #5658:
URL: https://github.com/apache/gravitino/issues/5658
### Version
main branch
### Describe what's wrong
In MySQL data source:
```
create table my_tb05 (col_timestamp TIMESTAMP);
insert into my_tb05 values (CURRENT_TIMESTAMP);
select * from my_tb05;
+---------------------+
| col_timestamp |
+---------------------+
| 2024-11-23 09:43:51 |
+---------------------+
1 row in set (0.01 sec)
```
Create MySQL catalog in Trino, load the data in MySQL:
```
call gravitino.system.create_catalog(
'gt_mysql1',
'jdbc-mysql',
map(
array['jdbc-url', 'jdbc-user', 'jdbc-password', 'jdbc-driver',
'trino.bypass.join-pushdown.strategy'],
array['jdbc:mysql://10.20.31.20/?useSSL=false', 'trino', 'ds123',
'com.mysql.cj.jdbc.Driver', 'EAGER']
)
);
create schema gt_mysql1.db1;
use gt_mysql1.db1;
select * from my_tb05;
col_timestamp
-------------------------
2024-11-23 09:43:51 UTC
```
### Error message and/or stacktrace
N/A
### How to reproduce
refer to the description section
### Additional context
_No response_
--
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]