vitess-gh/py/vttest/test_schema.sql

26 строки
952 B
SQL

# init
create table vtocc_test(intval int, floatval float, charval varchar(256), binval varbinary(256), primary key(intval))
begin
delete from vtocc_test
insert into vtocc_test values(1, 1.12345, 0xC2A2, 0x00FF), (2, null, '', null), (3, null, null, null)
commit
create table vtocc_a(eid bigint, id int, name varchar(128), foo varbinary(128), primary key(eid, id))
create table vtocc_b(eid bigint, id int, primary key(eid, id))
create table vtocc_c(eid bigint, name varbinary(128), foo varbinary(128), primary key(eid, name))
create table vtocc_d(eid bigint, id int)
begin
delete from vtocc_a
delete from vtocc_c
insert into vtocc_a(eid, id, name, foo) values(1, 1, 'abcd', 'efgh'), (1, 2, 'bcde', 'fghi')
insert into vtocc_b(eid, id) values(1, 1), (1, 2)
insert into vtocc_c(eid, name, foo) values(10, 'abcd', '20'), (11, 'bcde', '30')
commit
# clean
drop table vtocc_test
drop table vtocc_a
drop table vtocc_b
drop table vtocc_c
drop table vtocc_d