Chen-Yuan-Lai commented on PR #14826:
URL: https://github.com/apache/datafusion/pull/14826#issuecomment-2708661495

   Hi @jayzhan211, It seems all the CI checks were passed (including 
sqlogicaltest), but when I created and printed a table table by datafusion-cli 
, I got empty result
   
   ```bash
   DataFusion CLI v45.0.0
   > CREATE TABLE t_source(
       column1 String,
       column2 String,
       column3 String,
       column4 String
   ) AS VALUES
   ('one', 'one', 'one', 'one'),
   ('two', 'two', '', 'two'),
   (NULL, NULL, NULL, NULL),
   ('', '', '', ''),
   ('three', 'three', 'three', '');
   
   0 row(s) fetched. 
   Elapsed 0.005 seconds.
   
   > select * from t_source;
   +---------+---------+---------+---------+
   | column1 | column2 | column3 | column4 |
   +---------+---------+---------+---------+
   +---------+---------+---------+---------+
   5 row(s) fetched. 
   Elapsed 0.001 seconds.
   ``` 
   
   That is weird because I only modified the implementation of crypto 
functions. Why was the display for the basic operation was changed? Could you 
give me some help or suggestions? Thx!


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to