Repository: incubator-hawq Updated Branches: refs/heads/master 27d72576f -> 1e3cdd448
HAWQ-945. catalog:char/varchar test cases fail due to locale settings. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/1e3cdd44 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/1e3cdd44 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/1e3cdd44 Branch: refs/heads/master Commit: 1e3cdd448a30e8db62ad47e428d318f78acd1a34 Parents: 27d7257 Author: Paul Guo <[email protected]> Authored: Fri Jul 22 15:50:37 2016 +0800 Committer: Paul Guo <[email protected]> Committed: Fri Jul 22 15:51:01 2016 +0800 ---------------------------------------------------------------------- src/test/feature/catalog/ans/char.ans | 12 ++++++------ src/test/feature/catalog/ans/varchar.ans | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/1e3cdd44/src/test/feature/catalog/ans/char.ans ---------------------------------------------------------------------- diff --git a/src/test/feature/catalog/ans/char.ans b/src/test/feature/catalog/ans/char.ans index 39d6c98..b88506e 100755 --- a/src/test/feature/catalog/ans/char.ans +++ b/src/test/feature/catalog/ans/char.ans @@ -71,12 +71,11 @@ SELECT '' AS five, c.* WHERE c.f1 < 'a'; five | f1 ------+---- - | A | 1 | 2 | 3 | -(5 rows) +(4 rows) SELECT '' AS six, c.* FROM CHAR_TBL c @@ -84,20 +83,20 @@ SELECT '' AS six, c.* six | f1 -----+---- | a - | A | 1 | 2 | 3 | -(6 rows) +(5 rows) SELECT '' AS one, c.* FROM CHAR_TBL c WHERE c.f1 > 'a'; one | f1 -----+---- + | A | c -(1 row) +(2 rows) SELECT '' AS two, c.* FROM CHAR_TBL c @@ -105,8 +104,9 @@ SELECT '' AS two, c.* two | f1 -----+---- | a + | A | c -(2 rows) +(3 rows) DROP TABLE CHAR_TBL; DROP TABLE http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/1e3cdd44/src/test/feature/catalog/ans/varchar.ans ---------------------------------------------------------------------- diff --git a/src/test/feature/catalog/ans/varchar.ans b/src/test/feature/catalog/ans/varchar.ans index 1c10b15..513e953 100755 --- a/src/test/feature/catalog/ans/varchar.ans +++ b/src/test/feature/catalog/ans/varchar.ans @@ -60,12 +60,11 @@ SELECT '' AS five, c.* WHERE c.f1 < 'a'; five | f1 ------+---- - | A | 1 | 2 | 3 | -(5 rows) +(4 rows) SELECT '' AS six, c.* FROM VARCHAR_TBL c @@ -73,20 +72,20 @@ SELECT '' AS six, c.* six | f1 -----+---- | a - | A | 1 | 2 | 3 | -(6 rows) +(5 rows) SELECT '' AS one, c.* FROM VARCHAR_TBL c WHERE c.f1 > 'a'; one | f1 -----+---- + | A | c -(1 row) +(2 rows) SELECT '' AS two, c.* FROM VARCHAR_TBL c @@ -94,8 +93,9 @@ SELECT '' AS two, c.* two | f1 -----+---- | a + | A | c -(2 rows) +(3 rows) DROP TABLE VARCHAR_TBL; DROP TABLE
