summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/vcol/r/vcol_archive.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/vcol/r/vcol_archive.result')
-rw-r--r--mysql-test/suite/vcol/r/vcol_archive.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/vcol/r/vcol_archive.result b/mysql-test/suite/vcol/r/vcol_archive.result
new file mode 100644
index 00000000..5c11e8bb
--- /dev/null
+++ b/mysql-test/suite/vcol/r/vcol_archive.result
@@ -0,0 +1,7 @@
+SET @@session.default_storage_engine = 'archive';
+create table t1 (a int, b int as (a+1));
+ERROR HY000: ARCHIVE storage engine does not support generated columns
+create table t1 (a int not null);
+alter table t1 add column b int as (a+1);
+ERROR HY000: ARCHIVE storage engine does not support generated columns
+drop table t1;