projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a5cb30
)
Add test for multi-character char().
author
Thomas G. Lockhart
Fri, 5 Dec 1997 01:14:55 +0000
(
01:14
+0000)
committer
Thomas G. Lockhart
Fri, 5 Dec 1997 01:14:55 +0000
(
01:14
+0000)
src/test/regress/expected/char.out
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/expected/char.out
b/src/test/regress/expected/char.out
index ce9734493d20f298b968ed843897968e76ff0a96..45d7eddea1a604cabb36d395250b426f7f938e18 100644
(file)
--- a/
src/test/regress/expected/char.out
+++ b/
src/test/regress/expected/char.out
@@
-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)
+