mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
c0f40d14cc
A lot of new tests to mysqltest Fixed bug with BDB tables and autocommit
12 lines
248 B
Text
12 lines
248 B
Text
#
|
|
# Test of refering to old values
|
|
#
|
|
|
|
drop table if exists t1;
|
|
create table t1 (a int not null);
|
|
insert into t1 values (1);
|
|
insert into t1 values (a+2);
|
|
insert into t1 values (a+3);
|
|
insert into t1 values (4),(a+5);
|
|
select * from t1;
|
|
drop table t1;
|