ayushtkn commented on code in PR #6408:
URL: https://github.com/apache/hive/pull/6408#discussion_r3060383084
##########
ql/src/test/queries/clientpositive/parquet_struct_with_null_vectorization.q:
##########
@@ -14,18 +15,17 @@ INSERT INTO test_parquet_struct_nulls VALUES
(4, named_struct('x', 4, 'y', 4));
-- Test A: Full table scan to check JSON representation
-SELECT * FROM test_parquet_struct_nulls ORDER BY id;
+SELECT * FROM test_parquet_struct_nulls;
-- Test B: Verify IS NULL evaluates correctly
SELECT id FROM test_parquet_struct_nulls WHERE st_prim IS NULL;
-- Test C: Verify IS NOT NULL evaluates correctly
-SELECT id FROM test_parquet_struct_nulls WHERE st_prim IS NOT NULL ORDER BY id;
+SELECT id FROM test_parquet_struct_nulls WHERE st_prim IS NOT NULL;
-- Test D: Verify field-level null evaluation inside a valid struct
SELECT id FROM test_parquet_struct_nulls WHERE st_prim IS NOT NULL AND
st_prim.x IS NULL;
--- Validate withou vectorization
+-- Validate without vectorization
SET hive.vectorized.execution.enabled=true;
Review Comment:
Fixed!
--
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]