InvisibleProgrammer commented on code in PR #6043:
URL: https://github.com/apache/hive/pull/6043#discussion_r2322314643


##########
ql/src/test/queries/clientpositive/lineage_ptf.q:
##########
@@ -0,0 +1,125 @@
+set hive.exec.post.hooks=org.apache.hadoop.hive.ql.hooks.LineageLogger;
+
+-- Create a source table for testing
+create table source_tbl2(col_001 int, col_002 int, col_003 int, p1 int);
+
+--- Views for single PTF operators
+
+-- Test for ROW_NUMBER
+create view b_v_4_0 as
+select *
+from (select col_001,
+    row_number() over (partition by src.p1) as r_num,
+    row_number() over (partition by src.col_002) as r_num2,
+    row_number() over (partition by src.col_002) as r_num3
+

Review Comment:
   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: [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