You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by sa...@apache.org on 2017/05/12 20:25:52 UTC

[17/22] incubator-trafodion git commit: Updated seabase/TEST022

Updated seabase/TEST022


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

Branch: refs/heads/master
Commit: befb8fd33a300636b517ea22b2e648df4ae875cc
Parents: 7a7cfa3
Author: Sean Broeder <sb...@edev05.novalocal>
Authored: Wed May 3 22:21:04 2017 +0000
Committer: Sean Broeder <sb...@edev05.novalocal>
Committed: Wed May 3 22:21:04 2017 +0000

----------------------------------------------------------------------
 core/sql/regress/seabase/TEST022 | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/befb8fd3/core/sql/regress/seabase/TEST022
----------------------------------------------------------------------
diff --git a/core/sql/regress/seabase/TEST022 b/core/sql/regress/seabase/TEST022
index e8e9d13..684def5 100644
--- a/core/sql/regress/seabase/TEST022
+++ b/core/sql/regress/seabase/TEST022
@@ -178,11 +178,11 @@ insert into hbase."_ROW_".t022hbt2 values
                                        ('cf:1a', repeat('a', 40000)),
                                        ('cf:1b', repeat('z', 40000))));
 select count(*) from hbase."_CELL_".t022hbt2;
-select char_length(col_value) from hbase."_CELL_".t022hbt2;
+select char_length(col_value) from hbase."_CELL_".t022hbt2 order by 1;
 select count(*) from hbase."_CELL_".t022hbt2;
-select char_length(col_value) from hbase."_CELL_".t022hbt2;
+select char_length(col_value) from hbase."_CELL_".t022hbt2 order by 1;
 select count(*) from hbase."_ROW_".t022hbt2;
-select char_length(column_details) from hbase."_ROW_".t022hbt2;
+select char_length(column_details) from hbase."_ROW_".t022hbt2 order by 1;
 select left(row_id, 10) row_id, left(column_display(column_details), 40) 
            from hbase."_ROW_".t022hbt2;
 
@@ -286,9 +286,9 @@ insert into t022hbm1 values (1,2,3);
 insert into t022hbm1 values (1,2,3);
 insert into t022hbm1 values (1, 1, 1);
 insert into t022hbm1 values (-1, -2, -3);
-select * from t022hbm1;
+select * from t022hbm1 order by 1;
 upsert into t022hbm1 values (1,2,4);
-select * from t022hbm1;
+select * from t022hbm1 order by 1;
 
 -- various serialization options
 drop external table t022hbm1;