venusMask commented on issue #6931:
URL: https://github.com/apache/paimon/issues/6931#issuecomment-3701797770

   I tested this situation, but my result was correct. Was it because my 
testing procedures were different?
   
   spark-sql> show create table t2;
   CREATE TABLE ods_paimon.t2 (
     a INT,
     b INT)
   USING paimon
   LOCATION 'hdfs://ns1/user/hive/warehouse/ods.db/t2'
   TBLPROPERTIES (
     'path' = 'hdfs://ns1/user/hive/warehouse/ods.db/t2')
   Time taken: 0.011 seconds, Fetched 1 row(s)
   spark-sql> select * from t2;
   1       NULL
   2       2
   Time taken: 0.439 seconds, Fetched 2 row(s)
   spark-sql> select * from t where !(b <=> 2);
   1       NULL
   Time taken: 0.136 seconds, Fetched 1 row(s)


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