diff options
author | unknown <kent@mysql.com> | 2004-10-22 05:56:27 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2004-10-22 05:56:27 +0200 |
commit | d2bfd6766f9d8af284deb48852758eefefe4f9da (patch) | |
tree | fe9261b433535651944415f1f995aa26f5f6574a /mysql-test/r/mysqltest.result | |
parent | ce91fb2f899182b3bcdd53f460de1762855a609e (diff) | |
download | mariadb-git-d2bfd6766f9d8af284deb48852758eefefe4f9da.tar.gz |
mysqltest.c, mysqltest.result, mysqltest.test:
Added SQLSTATE matching support to test engine
mysqltest.result, mysqltest.test:
new file
mysql-test/t/mysqltest.test:
Added SQLSTATE matching support to test engine
mysql-test/r/mysqltest.result:
Added SQLSTATE matching support to test engine
client/mysqltest.c:
Added SQLSTATE matching support to test engine
Diffstat (limited to 'mysql-test/r/mysqltest.result')
-rw-r--r-- | mysql-test/r/mysqltest.result | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mysql-test/r/mysqltest.result b/mysql-test/r/mysqltest.result new file mode 100644 index 00000000000..4e30d5bc110 --- /dev/null +++ b/mysql-test/r/mysqltest.result @@ -0,0 +1,23 @@ +select otto from (select 1 as otto) as t1; +otto +1 +select otto from (select 1 as otto) as t1; +otto +1 +select otto from (select 1 as otto) as t1; +otto +1 +select friedrich from (select 1 as otto) as t1; +ERROR 42S22: Unknown column 'friedrich' in 'field list' +select friedrich from (select 1 as otto) as t1; +ERROR 42S22: Unknown column 'friedrich' in 'field list' +select otto from (select 1 as otto) as t1; +otto +1 +select otto from (select 1 as otto) as t1; +otto +1 +select friedrich from (select 1 as otto) as t1; +ERROR 42S22: Unknown column 'friedrich' in 'field list' +select friedrich from (select 1 as otto) as t1; +ERROR 42S22: Unknown column 'friedrich' in 'field list' |