summaryrefslogtreecommitdiff
path: root/mysql-test/r/delayed.result
diff options
context:
space:
mode:
authorEvgeny Potemkin <epotemkin@mysql.com>2009-10-20 11:30:41 +0400
committerEvgeny Potemkin <epotemkin@mysql.com>2009-10-20 11:30:41 +0400
commit4349a4726e46a5694ceda60713b67d9132c8a4a0 (patch)
treeb5430b493ae6d3d29e6f5107bb8fee90742310ca /mysql-test/r/delayed.result
parent3c557833205a44e08b72d47db53054562907cc78 (diff)
downloadmariadb-git-4349a4726e46a5694ceda60713b67d9132c8a4a0.tar.gz
#41760 Inserting into multiple-table views is not working
During insert, we are not reading the rows in a referring table but instead using the last read row that happens to be in table->record[0]. Now INSERT into such view is denied. mysql-test/r/delayed.result: A test case result is adjusted after fixing bug#41760. mysql-test/r/insert.result: A test case result is adjusted after fixing bug#41760. mysql-test/t/delayed.test: A test case is adjusted after fixing bug#41760. mysql-test/t/insert.test: A test case is adjusted after fixing bug#41760.
Diffstat (limited to 'mysql-test/r/delayed.result')
-rw-r--r--mysql-test/r/delayed.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/delayed.result b/mysql-test/r/delayed.result
index 4d5d656f3ce..b26b029759c 100644
--- a/mysql-test/r/delayed.result
+++ b/mysql-test/r/delayed.result
@@ -252,7 +252,7 @@ HEX(a)
DROP TABLE t1;
CREATE TABLE t1 (a INT);
INSERT DELAYED INTO t1 SET b= b();
-ERROR 42S22: Unknown column 'b' in 'field list'
+ERROR 42000: FUNCTION test.b does not exist
DROP TABLE t1;
End of 5.0 tests
DROP TABLE IF EXISTS t1,t2;