diff options
author | konstantin@mysql.com <> | 2004-10-30 17:17:52 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-10-30 17:17:52 +0400 |
commit | e97a79f2ee590c8f135d60d8470bcff2a90a3ef9 (patch) | |
tree | cb0d870d6cf9627fd71546bc821f1123a821efd1 /mysql-test/r/ps_2myisam.result | |
parent | 475aaac8ee31bbd32bae53320295563e248506b7 (diff) | |
download | mariadb-git-e97a79f2ee590c8f135d60d8470bcff2a90a3ef9.tar.gz |
Enable REPLACE ... SELECT in prepared statements.
Diffstat (limited to 'mysql-test/r/ps_2myisam.result')
-rw-r--r-- | mysql-test/r/ps_2myisam.result | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/ps_2myisam.result b/mysql-test/r/ps_2myisam.result index 40b2516f0b9..efb12561950 100644 --- a/mysql-test/r/ps_2myisam.result +++ b/mysql-test/r/ps_2myisam.result @@ -1581,7 +1581,9 @@ a b 1200 x1000_1updatedupdated delete from t1 where a >= 1000 ; prepare stmt1 from ' replace into t1 (a,b) select 100, ''hundred'' '; -ERROR HY000: This command is not supported in the prepared statement protocol yet +execute stmt1; +execute stmt1; +execute stmt1; test_sequence ------ multi table tests ------ delete from t1 ; |