You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2018/10/04 16:21:35 UTC

hive git commit: HIVE-20691: Fix org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[cttl] (Jesus Camacho Rodriguez, reviewed by Zoltan Haindrich)

Repository: hive
Updated Branches:
  refs/heads/master e96ea6631 -> ec4a28bde


HIVE-20691: Fix org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[cttl] (Jesus Camacho Rodriguez, reviewed by Zoltan Haindrich)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/ec4a28bd
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/ec4a28bd
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/ec4a28bd

Branch: refs/heads/master
Commit: ec4a28bde840fc474b301c68d85c3bed88129180
Parents: e96ea66
Author: Jesus Camacho Rodriguez <jc...@apache.org>
Authored: Thu Oct 4 09:18:05 2018 -0700
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Thu Oct 4 09:20:49 2018 -0700

----------------------------------------------------------------------
 ql/src/test/queries/clientpositive/cttl.q          | 2 +-
 ql/src/test/results/clientpositive/llap/cttl.q.out | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/ec4a28bd/ql/src/test/queries/clientpositive/cttl.q
----------------------------------------------------------------------
diff --git a/ql/src/test/queries/clientpositive/cttl.q b/ql/src/test/queries/clientpositive/cttl.q
index b3da8ec..86cd98f 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/;

http://git-wip-us.apache.org/repos/asf/hive/blob/ec4a28bd/ql/src/test/results/clientpositive/llap/cttl.q.out
----------------------------------------------------------------------
diff --git a/ql/src/test/results/clientpositive/llap/cttl.q.out b/ql/src/test/results/clientpositive/llap/cttl.q.out
index 8203b80..fe8fed5 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 ###