*** ./expected/cube_1.out Sun Jun 26 21:19:43 2005 --- ./results/cube.out Tue Jul 18 09:44:14 2006 *************** *** 258,310 **** -- invalid input: parse errors SELECT ''::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at end of input SELECT 'ABC'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "A" SELECT '()'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near ")" SELECT '[]'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "]" SELECT '[()]'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near ")" SELECT '[(1)]'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "]" SELECT '[(1),]'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "]" SELECT '[(1),2]'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "2" SELECT '[(1),(2),(3)]'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "," SELECT '1,'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at end of input SELECT '1,2,'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at end of input SELECT '1,,2'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "," SELECT '(1,)'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near ")" SELECT '(1,2,)'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near ")" SELECT '(1,,2)'::cube AS cube; ERROR: bad cube representation ! DETAIL: syntax error at or near "," -- invalid input: semantic errors and trailing garbage SELECT '[(1),(2)],'::cube AS cube; -- 0 ERROR: bad cube representation ! DETAIL: syntax error at or near "," SELECT '[(1,2,3),(2,3)]'::cube AS cube; -- 1 ERROR: bad cube representation DETAIL: different point dimensions in (1,2,3) and (2,3) --- 258,310 ---- -- invalid input: parse errors SELECT ''::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at end of input SELECT 'ABC'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "A" SELECT '()'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near ")" SELECT '[]'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "]" SELECT '[()]'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near ")" SELECT '[(1)]'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "]" SELECT '[(1),]'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "]" SELECT '[(1),2]'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "2" SELECT '[(1),(2),(3)]'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "," SELECT '1,'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at end of input SELECT '1,2,'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at end of input SELECT '1,,2'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "," SELECT '(1,)'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near ")" SELECT '(1,2,)'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near ")" SELECT '(1,,2)'::cube AS cube; ERROR: bad cube representation ! DETAIL: parse error at or near "," -- invalid input: semantic errors and trailing garbage SELECT '[(1),(2)],'::cube AS cube; -- 0 ERROR: bad cube representation ! DETAIL: parse error at or near "," SELECT '[(1,2,3),(2,3)]'::cube AS cube; -- 1 ERROR: bad cube representation DETAIL: different point dimensions in (1,2,3) and (2,3) *************** *** 313,319 **** DETAIL: different point dimensions in (1,2) and (1,2,3) SELECT '(1),(2),'::cube AS cube; -- 2 ERROR: bad cube representation ! DETAIL: syntax error at or near "," SELECT '(1,2,3),(2,3)'::cube AS cube; -- 3 ERROR: bad cube representation DETAIL: different point dimensions in (1,2,3) and (2,3) --- 313,319 ---- DETAIL: different point dimensions in (1,2) and (1,2,3) SELECT '(1),(2),'::cube AS cube; -- 2 ERROR: bad cube representation ! DETAIL: parse error at or near "," SELECT '(1,2,3),(2,3)'::cube AS cube; -- 3 ERROR: bad cube representation DETAIL: different point dimensions in (1,2,3) and (2,3) *************** *** 322,346 **** DETAIL: different point dimensions in (1,2) and (1,2,3) SELECT '(1,2,3)ab'::cube AS cube; -- 4 ERROR: bad cube representation ! DETAIL: syntax error at or near "a" SELECT '(1,2,3)a'::cube AS cube; -- 5 ERROR: bad cube representation ! DETAIL: syntax error at or near "a" SELECT '(1,2)('::cube AS cube; -- 5 ERROR: bad cube representation ! DETAIL: syntax error at or near "(" SELECT '1,2ab'::cube AS cube; -- 6 ERROR: bad cube representation ! DETAIL: syntax error at or near "a" SELECT '1 e7'::cube AS cube; -- 6 ERROR: bad cube representation ! DETAIL: syntax error at or near "e" SELECT '1,2a'::cube AS cube; -- 7 ERROR: bad cube representation ! DETAIL: syntax error at or near "a" SELECT '1..2'::cube AS cube; -- 7 ERROR: bad cube representation ! DETAIL: syntax error at or near ".2" -- -- Testing building cubes from float8 values -- --- 322,346 ---- DETAIL: different point dimensions in (1,2) and (1,2,3) SELECT '(1,2,3)ab'::cube AS cube; -- 4 ERROR: bad cube representation ! DETAIL: parse error at or near "a" SELECT '(1,2,3)a'::cube AS cube; -- 5 ERROR: bad cube representation ! DETAIL: parse error at or near "a" SELECT '(1,2)('::cube AS cube; -- 5 ERROR: bad cube representation ! DETAIL: parse error at or near "(" SELECT '1,2ab'::cube AS cube; -- 6 ERROR: bad cube representation ! DETAIL: parse error at or near "a" SELECT '1 e7'::cube AS cube; -- 6 ERROR: bad cube representation ! DETAIL: parse error at or near "e" SELECT '1,2a'::cube AS cube; -- 7 ERROR: bad cube representation ! DETAIL: parse error at or near "a" SELECT '1..2'::cube AS cube; -- 7 ERROR: bad cube representation ! DETAIL: parse error at or near ".2" -- -- Testing building cubes from float8 values -- ======================================================================