MXS-1389: Fix fwf test SQL
The SQL executed by the test that was expected to pass wasn't correct SQL. It appears that a CAST from an INTEGER to a TEXT value is not possible.
This commit is contained in:
parent
a08179afcb
commit
f0a9866a87
@ -3,4 +3,4 @@ CREATE TABLE t1 (name int, address int, email int);
|
||||
INSERT INTO t1 VALUES (1, 1, 1);
|
||||
SELECT name, address, email FROM t1;
|
||||
SELECT name, address, SUM(email) FROM t1;
|
||||
SELECT CAST(name AS TEXT), CAST(address AS TEXT), SUM(email) FROM t1;
|
||||
SELECT CAST(name AS CHAR(200)), CAST(address AS CHAR(200)), SUM(email) FROM t1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user