summaryrefslogtreecommitdiff
path: root/storage/ndb/test/sql/T1.sql
blob: 754211c4eac6ba67c6251f1c48d69b7da1b9714f (plain)
1
2
3
4
5
6
7
8
9
create database if not exists TEST_DB;
use TEST_DB;
drop table if exists T1;
create table T1 (KOL1 int unsigned not null,
                 KOL2 int unsigned not null,
	         KOL3 int unsigned not null,
	         KOL4 int unsigned not null,
	         KOL5 int unsigned not null,
	         primary key using hash(KOL1)) engine=ndb;