diff --git a/ql/src/test/queries/clientpositive/cttl.q b/ql/src/test/queries/clientpositive/cttl.q index b3da8ec2d4..86cd98fe83 100644 --- a/ql/src/test/queries/clientpositive/cttl.q +++ b/ql/src/test/queries/clientpositive/cttl.q @@ -21,7 +21,7 @@ create external table students( create temporary table temp1 like students; insert into table temp1 select * from students; -select * from temp1 order by name limit 10; +select * from temp1 order by name, age limit 10; drop table students; dfs -ls hdfs:///tmp/hive19577_cttl/; diff --git a/ql/src/test/results/clientpositive/llap/cttl.q.out b/ql/src/test/results/clientpositive/llap/cttl.q.out index 8203b80541..fe8fed59ab 100644 --- a/ql/src/test/results/clientpositive/llap/cttl.q.out +++ b/ql/src/test/results/clientpositive/llap/cttl.q.out @@ -47,11 +47,11 @@ POSTHOOK: Output: default@temp1 POSTHOOK: Lineage: temp1.age SIMPLE [(students)students.FieldSchema(name:age, type:int, comment:null), ] POSTHOOK: Lineage: temp1.gpa SIMPLE [(students)students.FieldSchema(name:gpa, type:double, comment:null), ] POSTHOOK: Lineage: temp1.name SIMPLE [(students)students.FieldSchema(name:name, type:string, comment:null), ] -PREHOOK: query: select * from temp1 order by name limit 10 +PREHOOK: query: select * from temp1 order by name, age limit 10 PREHOOK: type: QUERY PREHOOK: Input: default@temp1 PREHOOK: Output: hdfs://### HDFS PATH ### -POSTHOOK: query: select * from temp1 order by name limit 10 +POSTHOOK: query: select * from temp1 order by name, age limit 10 POSTHOOK: type: QUERY POSTHOOK: Input: default@temp1 POSTHOOK: Output: hdfs://### HDFS PATH ###