mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Added support for hex strings to mysqlimport
A lot of new tests to mysqltest Fixed bug with BDB tables and autocommit
This commit is contained in:
12
mysql-test/t/insert.test
Normal file
12
mysql-test/t/insert.test
Normal file
@@ -0,0 +1,12 @@
|
||||
#
|
||||
# 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;
|
||||
Reference in New Issue
Block a user