repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
*** empty log message ***
[csql.git]
/
test
/
tools
/
csql
/
tree13.sql
blob
0d84d12559333c75a4d8f03ed6888f22c34992d5
1
create table t1(f1 int not null,f2 int,f3 int);
2
echo create index idx1 on t1(f1) hash unique;
3
create index idx1 on t1(f1) hash unique;
4
echo create index idx2 on t1(f1) tree unique;
5
create index idx2 on t1(f1) tree unique;
6