diff options
Diffstat (limited to 'mysql-test/suite/storage_engine/vcol.result')
-rw-r--r-- | mysql-test/suite/storage_engine/vcol.result | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/mysql-test/suite/storage_engine/vcol.result b/mysql-test/suite/storage_engine/vcol.result new file mode 100644 index 00000000..672f2080 --- /dev/null +++ b/mysql-test/suite/storage_engine/vcol.result @@ -0,0 +1,69 @@ +DROP TABLE IF EXISTS t1; +CREATE TABLE t1 (a <INT_COLUMN>, b <INT_COLUMN> GENERATED ALWAYS AS (a+1)) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>; +SHOW COLUMNS IN t1; +Field Type Null Key Default Extra +a int(11) # # +b int(11) # # VIRTUAL GENERATED +INSERT INTO t1 (a) VALUES (1),(2); +INSERT INTO t1 (a,b) VALUES (3,3),(4,4); +Warnings: +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +SELECT a,b FROM t1; +a b +1 2 +2 3 +3 4 +4 5 +DROP TABLE t1; +CREATE TABLE t1 (a <INT_COLUMN>, b <INT_COLUMN> GENERATED ALWAYS AS (a+1) PERSISTENT) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>; +SHOW COLUMNS IN t1; +Field Type Null Key Default Extra +a int(11) # # +b int(11) # # STORED GENERATED +INSERT INTO t1 (a) VALUES (1),(2); +INSERT INTO t1 (a,b) VALUES (3,3),(4,4); +Warnings: +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +SELECT a,b FROM t1; +a b +1 2 +2 3 +3 4 +4 5 +DROP TABLE t1; +CREATE TABLE t1 (a <INT_COLUMN>, b <INT_COLUMN> GENERATED ALWAYS AS (a+1) VIRTUAL) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>; +SHOW COLUMNS IN t1; +Field Type Null Key Default Extra +a int(11) # # +b int(11) # # VIRTUAL GENERATED +INSERT INTO t1 (a) VALUES (1),(2); +INSERT INTO t1 (a,b) VALUES (3,3),(4,4); +Warnings: +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +SELECT a,b FROM t1; +a b +1 2 +2 3 +3 4 +4 5 +DROP TABLE t1; +CREATE TABLE t1 (a <INT_COLUMN>, b <INT_COLUMN> AS (a+1) PERSISTENT) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>; +SHOW COLUMNS IN t1; +Field Type Null Key Default Extra +a int(11) # # +b int(11) # # STORED GENERATED +INSERT INTO t1 (a) VALUES (1),(2); +INSERT INTO t1 (a,b) VALUES (3,3),(4,4); +Warnings: +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +Warning 1906 The value specified for generated column 'b' in table 't1' has been ignored +SELECT a,b FROM t1; +a b +1 2 +2 3 +3 4 +4 5 +DROP TABLE t1; |