mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
14 lines
567 B
Text
14 lines
567 B
Text
SET @@session.default_storage_engine = 'blackhole';
|
|
create table t1 (a int, b int generated always as (a+1) virtual);
|
|
ERROR HY000: BLACKHOLE storage engine does not support generated columns
|
|
create table t1 (a int);
|
|
alter table t1 add column b int generated always as (a+1) virtual;
|
|
ERROR HY000: BLACKHOLE storage engine does not support generated columns
|
|
drop table t1;
|
|
DROP VIEW IF EXISTS v1,v2;
|
|
DROP TABLE IF EXISTS t1,t2,t3;
|
|
DROP PROCEDURE IF EXISTS p1;
|
|
DROP FUNCTION IF EXISTS f1;
|
|
DROP TRIGGER IF EXISTS trg1;
|
|
DROP TRIGGER IF EXISTS trg2;
|
|
set sql_warnings = 0;
|