ayushtkn commented on code in PR #3187:
URL: https://github.com/apache/hive/pull/3187#discussion_r853869839


##########
ql/src/test/queries/clientpositive/vector_ptf_bounded_start.q:
##########
@@ -3,24 +3,31 @@ set hive.vectorized.execution.enabled=true;
 set hive.vectorized.execution.ptf.enabled=true;
 set hive.fetch.task.conversion=none;
 
-CREATE TABLE vector_ptf_part_simple_text(p_mfgr string, p_name string, p_date 
date, p_retailprice double, rowindex int)
+CREATE TABLE vector_ptf_part_simple_text(p_mfgr string, p_name string, p_date 
date, p_retailprice double,
+        p_type char(1), p_varchar varchar(5), rowindex int)
         ROW FORMAT DELIMITED
-        FIELDS TERMINATED BY '\t'
+        FIELDS TERMINATED BY ','
         STORED AS TEXTFILE;
 LOAD DATA LOCAL INPATH 
'../../data/files/vector_ptf_part_simple_all_datatypes.txt' OVERWRITE INTO 
TABLE vector_ptf_part_simple_text;
 
+SELECT * from vector_ptf_part_simple_text;
+
 CREATE TABLE vector_ptf_part_simple_orc (p_mfgr string, p_name string, p_date 
date, p_timestamp timestamp, 
-p_int int, p_retailprice double, p_decimal decimal(10,4), rowindex int) stored 
as orc;
+p_int int, p_retailprice double, p_decimal decimal(10,4), p_type char(1), 
p_varchar varchar(5),rowindex int) stored

Review Comment:
   Changed.



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