beliefer opened a new issue, #11010:
URL: https://github.com/apache/incubator-gluten/issues/11010

   ### Backend
   
   VL (Velox)
   
   ### Bug description
   
   We created the table with Hive client.
   ```
   CREATE TABLE default.test_orc_table_hive_gluten
   (
       id int,
       name string
   )
   PARTITIONED BY (dt string)
   STORED AS ORC;
   
   insert into test_orc_table_hive_gluten partition(dt='20240728') values (1, 
'a'),(2,'b');
   ```
   And query this table with Spark SQL.
   `select * from test_orc_table_hive_gluten where dt = '20240728';`
   We expected the output should be
   ```
   1    a       20240728
   2    b       20240728
   ```
   
   The output show below.
   ```
   NULL NULL    20240728
   NULL NULL    20240728
   ```
   
   
   ### Gluten version
   
   _No response_
   
   ### Spark version
   
   None
   
   ### Spark configurations
   
   _No response_
   
   ### System information
   
   _No response_
   
   ### Relevant logs
   
   ```bash
   
   ```


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to