summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/s3/unsupported.result
blob: e12b57af2ba5acba3aef1641640724c9704fe257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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