summaryrefslogtreecommitdiff
path: root/mysql-test/suite/s3/unsupported.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/s3/unsupported.result')
-rw-r--r--mysql-test/suite/s3/unsupported.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/suite/s3/unsupported.result b/mysql-test/suite/s3/unsupported.result
new file mode 100644
index 00000000000..4ced713f73f
--- /dev/null
+++ b/mysql-test/suite/s3/unsupported.result
@@ -0,0 +1,8 @@
+create sequence s1;
+alter table s1 engine=s3;
+ERROR HY000: Can't create table `database`.`s1` (errno: 138 "Unsupported extension used for table")
+drop sequence s1;
+create temporary table t1 (a int);
+alter table t1 engine=S3;
+ERROR HY000: Can't create table `database`.`t1` (errno: 131 "Command not supported by the engine")
+drop temporary table t1;