~andrey-zhakov/mysql-server/mysql-6.0-wl1075-wl411

« back to all changes in this revision

Viewing changes to mysql-test/suite/vcol/r/vcol_memory.result

  • Committer: Andrey Zhakov
  • Date: 2008-09-08 03:01:17 UTC
  • Revision ID: andrey.zhakov@yahoo.com-20080908030117-3q67usagpsoalmb8
Submitted feature's code and test cases (mysql-test/suite/vcol).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET @@session.storage_engine = 'memory';
 
2
create table t1 (a int, b virtual int as (a+1));
 
3
ERROR HY000: 'Specified storage engine' is not yet supported for virtual columns.
 
4
create table t1 (a int);
 
5
alter table t1 add column b virtual int as (a+1);
 
6
ERROR HY000: 'Specified storage engine' is not yet supported for virtual columns.
 
7
drop table t1;
 
8
DROP VIEW  IF EXISTS v1,v2;
 
9
DROP TABLE IF EXISTS t1,t2,t3;
 
10
DROP PROCEDURE IF EXISTS p1;
 
11
DROP FUNCTION IF EXISTS f1;
 
12
DROP TRIGGER IF EXISTS trg1;
 
13
DROP TRIGGER IF EXISTS trg2;
 
14
set sql_warnings = 0;