1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/*
* $Id: dsv-trimming.sql,v 1.1 2007/08/09 03:28:36 unsaved Exp $
*
* Tests trimming in DSV imports
*/
/** This is the default on UNIX.
* Our *.dsv test files are stored as binaries, so this is required
* to run tests on Windows: */
* *DSV_ROW_DELIM = \n
CREATE TABLE t (i INT, r REAL, d DATE, t TIMESTAMP, v VARCHAR, b BOOLEAN);
\m dsv-trimming.dsv
SELECT count(*) FROM t WHERE i = 31;
*if (*? != 1)
\q Import of space-embedded INT failed
*end if
SELECT count(*) FROM t WHERE r = 3.124;
*if (*? != 1)
\q Import of space-embedded REAL failed
*end if
SELECT count(*) FROM t WHERE d = '2007-06-07';
*if (*? != 1)
\q Import of space-embedded DATE failed
*end if
SELECT count(*) FROM t WHERE t = '2006-05-06 12:30:04';
*if (*? != 1)
\q Import of space-embedded TIMESTAMP failed
*end if
SELECT count(*) FROM t WHERE v = ' a B ';
*if (*? != 1)
\q Import of space-embedded VARCHAR failed
*end if
/** I dont' know if "IS true" or "= true" is preferred, but the former
* doesn't work with HSQLDB 1.7.0.7 */
SELECT count(*) FROM t WHERE b = true;
*if (*? != 1)
\q Import of space-embedded BOOLEAN failed
*end if
/** Repeat test with some non-default DSV settings */
* *DSV_COL_DELIM = \\
* *DSV_ROW_DELIM = }\n
DELETE FROM t;
\m dsv-trimming-alt.dsv
SELECT count(*) FROM t WHERE i = 31;
*if (*? != 1)
\q Import of space-embedded INT failed
*end if
SELECT count(*) FROM t WHERE r = 3.124;
*if (*? != 1)
\q Import of space-embedded REAL failed
*end if
SELECT count(*) FROM t WHERE d = '2007-06-07';
*if (*? != 1)
\q Import of space-embedded DATE failed
*end if
SELECT count(*) FROM t WHERE t = '2006-05-06 12:30:04';
*if (*? != 1)
\q Import of space-embedded TIMESTAMP failed
*end if
SELECT count(*) FROM t WHERE v = ' a B ';
*if (*? != 1)
\q Import of space-embedded VARCHAR failed
*end if
/** I dont' know if "IS true" or "= true" is preferred, but the former
* doesn't work with HSQLDB 1.7.0.7 */
SELECT count(*) FROM t WHERE b = true;
*if (*? != 1)
\q Import of space-embedded BOOLEAN failed
*end if
|