blob: 56fea446704f0d78be0fe2c712c6157712191471 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- text.sql
+++ text.sql
@@ -8,8 +8,8 @@ SELECT text 'this is a text string' = text 'this is a text strin' AS false;
CREATE TABLE TEXT_TBL (f1 text);
-INSERT INTO TEXT_TBL VALUES ('doh!');
-INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');
+INSERT INTO TEXT_TBL (f1) VALUES ('doh!');
+INSERT INTO TEXT_TBL (f1) VALUES ('hi de ho neighbor');
SELECT * FROM TEXT_TBL;
|