danhuawang opened a new issue, #10921:
URL: https://github.com/apache/gravitino/issues/10921

   ### Version
   
   main branch
   
   ### Describe what's wrong
   
   It needs to confirm this is  engine issue or gravitino IRC issue?
   <img width="450" height="461" alt="Image" 
src="https://github.com/user-attachments/assets/205094e0-b9c6-42e1-8f12-c75a210115cc";
 />
   
   ### Error message and/or stacktrace
   
   N/A
   
   ### How to reproduce
   
   1. Spark and Trino connect the same IRC service
   2. Spark:
   ```
   CREATE TABLE IF NOT EXISTS gcp_remote.mydatabase2.employee (
     id bigint,
     name string,
     department string,
     hire_date timestamp
   ) USING iceberg
   PARTITIONED BY (days(hire_date));
   
   INSERT INTO gcp_remote.mydatabase2.employee
   VALUES
   (1, 'Alice', 'Engineering', TIMESTAMP '2021-01-01 09:00:00'),
   (2, 'Bob', 'Marketing', TIMESTAMP '2021-02-01 10:30:00'),
   (3, 'Charlie', 'Sales', TIMESTAMP '2021-03-01 08:45:00');
   
   SELECT * FROM gcp_remote.mydatabase2.employee;
   ```
   
   3. Trino
   
   ```
   select * from remote_irc.mydatabase2.employee;
   ```
   
   ### 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]

Reply via email to