Skip to content
Snippets Groups Projects
Commit d358456c authored by Thomas G. Lockhart's avatar Thomas G. Lockhart
Browse files

Add test for multi-character char().

parent 5a5cb300
No related branches found
No related tags found
No related merge requests found
......@@ -88,3 +88,17 @@ two|f1
(2 rows)
QUERY: DROP TABLE CHAR_TBL;
QUERY: CREATE TABLE CHAR_TBL(f1 char(4));
QUERY: INSERT INTO CHAR_TBL (f1) VALUES ('a');
QUERY: INSERT INTO CHAR_TBL (f1) VALUES ('ab');
QUERY: INSERT INTO CHAR_TBL (f1) VALUES ('abcd');
QUERY: INSERT INTO CHAR_TBL (f1) VALUES ('abcde');
QUERY: SELECT '' AS four, CHAR_TBL.*;
four|f1
----+----
|a
|ab
|abcd
|abcd
(4 rows)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment