summaryrefslogtreecommitdiff
path: root/mysql-test/r/plugin.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2010-07-13 07:34:14 -0700
committerIgor Babaev <igor@askmonty.org>2010-07-13 07:34:14 -0700
commit73be27c07f3283cb35e0fb7085b5068ab360bc01 (patch)
treecffb27f04190da0612b553bcaf451235463c194f /mysql-test/r/plugin.result
parent6197332366ec1908af34b2415f01ccca7757f0c2 (diff)
downloadmariadb-git-73be27c07f3283cb35e0fb7085b5068ab360bc01.tar.gz
Fixed bug #604549.
There was no error thrown when creating a table with a virtual table computed by an expression returning a row. This caused a crash when inserting into the table. Removed periods at the end of the error messages for virtual columns. Adjusted output in test result files accordingly.
Diffstat (limited to 'mysql-test/r/plugin.result')
-rw-r--r--mysql-test/r/plugin.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/plugin.result b/mysql-test/r/plugin.result
index 8d765945329..8169bd458e8 100644
--- a/mysql-test/r/plugin.result
+++ b/mysql-test/r/plugin.result
@@ -75,9 +75,9 @@ SET SQL_MODE='IGNORE_BAD_TABLE_OPTIONS';
#illegal value fixed
CREATE TABLE t1 (a int) ENGINE=example ULL=10000000000000000000 one_or_two='ttt' YESNO=SSS;
Warnings:
-Warning 1651 Incorrect value '10000000000000000000' for option 'ULL'
-Warning 1651 Incorrect value 'ttt' for option 'one_or_two'
-Warning 1651 Incorrect value 'SSS' for option 'YESNO'
+Warning 1652 Incorrect value '10000000000000000000' for option 'ULL'
+Warning 1652 Incorrect value 'ttt' for option 'one_or_two'
+Warning 1652 Incorrect value 'SSS' for option 'YESNO'
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (