diff options
Diffstat (limited to '')
-rw-r--r-- | mysql-test/suite/s3/unsupported.result | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/suite/s3/unsupported.result b/mysql-test/suite/s3/unsupported.result new file mode 100644 index 00000000..e12b57af --- /dev/null +++ b/mysql-test/suite/s3/unsupported.result @@ -0,0 +1,15 @@ +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; +# +# CREATE of S3 table +# +create or replace table t1 (a int, b int, key (a)) engine=S3; +ERROR HY000: Can't create table `database`.`t1` (errno: 131 "Command not supported by the engine") +select * from t1; +ERROR 42S02: Table 'database.t1' doesn't exist |