1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
|
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(73)
--!./tcltestrunner.lua
-- 2001 September 15
--
-- The author disclaims copyright to this source code. In place of
-- a legal notice, here is a blessing:
--
-- May you do good and not evil.
-- May you find forgiveness for yourself and forgive others.
-- May you share freely, never taking more than you give.
--
-------------------------------------------------------------------------
-- This file implements regression tests for sql library. The
-- focus of this file is testing the CREATE INDEX statement.
--
-- $Id: index.test,v 1.43 2008/01/16 18:20:42 danielk1977 Exp $
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
-- Create a basic index and verify it is added to sql_master
--
test:do_test(
"index-1.1",
function()
test:execsql "CREATE TABLE test1(id INT primary key, f1 int, f2 int, f3 int)"
test:execsql "CREATE INDEX index1 ON test1(f1)"
return test:execsql [[SELECT "name" FROM "_space" WHERE "name"='TEST1']]
end, {
-- <index-1.1>
"TEST1"
-- </index-1.1>
})
test:do_execsql_test(
"index-1.1.1",
[[
SELECT "name" FROM "_index" WHERE "name"='INDEX1'
]], {
-- <index-1.1.1>
"INDEX1"
-- </index-1.1.1>
})
-- do_test index-1.1b {
-- execsql {SELECT name, sql, tbl_name, type FROM sql_master
-- WHERE name='index1'}
-- } {index1 {CREATE INDEX index1 ON test1(f1)} test1 index}
--do_test index-1.1c {
-- db close
-- sql db test.db
-- execsql {SELECT name FROM _index WHERE name='index1'}
--} {index1}
-- execsql {SELECT name, sql, tbl_name, type FROM sql_master
-- WHERE name='index1'}
--} {index1 {CREATE INDEX index1 ON test1(f1)} test1 index}
--do_test index-1.1d {
-- db close
-- sql db test.db
-- execsql {SELECT name FROM _space WHERE name='test1'}
--execsql {SELECT name FROM sql_master WHERE type!='meta' ORDER BY name}
--} {test1}
-- Verify that the index dies with the table
--
test:do_test(
"index-1.2",
function()
test:execsql "DROP TABLE test1"
return test:execsql [[SELECT "name" FROM "_space" WHERE "name"='TEST1']]
--execsql {SELECT name FROM sql_master WHERE type!='meta' ORDER BY name}
end, {
-- <index-1.2>
-- </index-1.2>
})
-- Try adding an index to a table that does not exist
--
test:do_catchsql_test(
"index-2.1",
[[
CREATE INDEX index1 ON test1(f1)
]], {
-- <index-2.1>
1, "Space 'TEST1' does not exist"
-- </index-2.1>
})
-- Try adding an index on a column of a table where the table
-- exists but the column does not.
--
test:do_test(
"index-2.1b",
function()
test:execsql "CREATE TABLE test1(id INT primary key, f1 int, f2 int, f3 int)"
return test:catchsql "CREATE INDEX index1 ON test1(f4)"
end, {
-- <index-2.1b>
1, "Can’t resolve field 'F4'"
-- </index-2.1b>
})
-- Try an index with some columns that match and others that do now.
--
test:do_test(
"index-2.2",
function()
local msg
local v , msg= pcall(function()
test:execsql("CREATE INDEX index1 ON test1(f1, f2, f4, f3)")
end)
v = v == true and {0} or {1}
test:execsql("DROP TABLE test1")
return table.insert(v,tostring(msg)) or v
end, {
-- <index-2.2>
1, "Can’t resolve field 'F4'"
-- </index-2.2>
})
test:do_test(
"index-4.1",
function()
test:execsql "CREATE TABLE test1(id INT primary key, cnt int, power int)"
local val = 2
for i = 1, 19, 1 do
test:execsql(string.format("INSERT INTO test1 VALUES(%s, %s,%s)", i, i, val))
val = val * 2
end
test:execsql "CREATE INDEX index9 ON test1(cnt)"
test:execsql "CREATE INDEX indext ON test1(power)"
return test:execsql [[SELECT "name" FROM "_index" WHERE "name"='INDEX9' OR "name"='INDEXT' union SELECT "name" FROM "_space" WHERE "name"='TEST1';]]
end, {
-- <index-4.1>
"INDEX9", "INDEXT", "TEST1"
-- </index-4.1>
})
test:do_execsql_test(
"index-4.2",
[[
SELECT cnt FROM test1 WHERE power=4
]], {
-- <index-4.2>
2
-- </index-4.2>
})
test:do_execsql_test(
"index-4.3",
[[
SELECT cnt FROM test1 WHERE power=1024
]], {
-- <index-4.3>
10
-- </index-4.3>
})
test:do_execsql_test(
"index-4.4",
[[
SELECT power FROM test1 WHERE cnt=6
]], {
-- <index-4.4>
64
-- </index-4.4>
})
test:do_test(
"index-4.5",
function()
test:execsql [[DROP INDEX indext ON test1]]
return test:execsql "SELECT power FROM test1 WHERE cnt=6"
end, {
-- <index-4.5>
64
-- </index-4.5>
})
test:do_execsql_test(
"index-4.6",
[[
SELECT cnt FROM test1 WHERE power=1024
]], {
-- <index-4.6>
10
-- </index-4.6>
})
test:do_test(
"index-4.7",
function()
test:execsql "CREATE INDEX indext ON test1(cnt)"
return test:execsql "SELECT power FROM test1 WHERE cnt=6"
end, {
-- <index-4.7>
64
-- </index-4.7>
})
test:do_execsql_test(
"index-4.8",
[[
SELECT cnt FROM test1 WHERE power=1024
]], {
-- <index-4.8>
10
-- </index-4.8>
})
test:do_test(
"index-4.9",
function()
test:execsql [[DROP INDEX index9 ON test1]]
return test:execsql "SELECT power FROM test1 WHERE cnt=6"
end, {
-- <index-4.9>
64
-- </index-4.9>
})
test:do_execsql_test(
"index-4.10",
[[
SELECT cnt FROM test1 WHERE power=1024
]], {
-- <index-4.10>
10
-- </index-4.10>
})
test:do_test(
"index-4.11",
function()
test:execsql [[DROP INDEX indext ON test1]]
return test:execsql "SELECT power FROM test1 WHERE cnt=6"
end, {
-- <index-4.11>
64
-- </index-4.11>
})
test:do_execsql_test(
"index-4.12",
[[
SELECT cnt FROM test1 WHERE power=1024
]], {
-- <index-4.12>
10
-- </index-4.12>
})
test:do_test(
"index-4.13",
function()
test:execsql "DROP TABLE test1"
return test:execsql [[SELECT "name" FROM "_space" WHERE "name"='TEST1']]
--execsql {SELECT name FROM sql_master WHERE type!='meta' ORDER BY name}
end, {
-- <index-4.13>
-- </index-4.13>
})
-- integrity_check index-4.14
-- # Do not allow indices to be added to sql_master
-- #
-- do_test index-5.1 {
-- set v [catch {execsql {CREATE INDEX index1 ON sql_master(name)}} msg]
-- lappend v $msg
-- } {1 {table sql_master may not be indexed}}
-- do_test index-5.2 {
-- execsql {SELECT name FROM sql_master WHERE type!='meta'}
-- } {}
-- Do not allow indices with duplicate names to be added
--
test:do_test(
"index-6.1",
function()
test:execsql "CREATE TABLE test1(id INT primary key, f1 int, f2 int)"
test:execsql "CREATE TABLE test2(id INT primary key, g1 NUMBER, g2 NUMBER)"
return test:execsql "CREATE INDEX index1 ON test1(f1)"
end, {
-- <index-6.1>
-- </index-6.1>
})
--set v [catch {execsql {CREATE INDEX index1 ON test2(g1)}} msg]
--lappend v $msg
--} {1 {index index1 already exists}}
-- do_test index-6.1.1 {
-- catchsql {CREATE INDEX [index1] ON test2(g1)}
-- } {1 {index index1 already exists}}
test:do_execsql_test(
"index-6.1b",
[[
SELECT "name" FROM "_index" WHERE "name"='INDEX1' union SELECT "name" FROM "_space" WHERE "name"='TEST1' OR "name"='TEST2'
]], {
-- <index-6.1b>
"INDEX1", "TEST1", "TEST2"
-- </index-6.1b>
})
test:do_catchsql_test(
"index-6.1c",
[[
CREATE INDEX IF NOT EXISTS index1 ON test1(f1)
]], {
-- <index-6.1c>
0
-- </index-6.1c>
})
test:do_execsql_test(
"index-6.2",
[[
SELECT "name" FROM "_index" WHERE "name"='INDEX1' union SELECT "name" FROM "_space" WHERE "name"='TEST1' OR "name"='TEST2'
]], {
-- <index-6.2>
"INDEX1", "TEST1", "TEST2"
-- </index-6.2>
})
test:do_test(
"index-6.3",
function()
test:execsql "DROP TABLE test1"
test:execsql "DROP TABLE test2"
return test:execsql [[SELECT "name" FROM "_space" WHERE "name"='TEST1' OR "name"='TEST2']]
--execsql {SELECT name FROM sql_master WHERE type!='meta' ORDER BY name}
end, {
-- <index-6.3>
-- </index-6.3>
})
test:do_execsql_test(
"index-6.4",
[[
CREATE TABLE test1(id INT primary key, a INT ,b INT );
CREATE INDEX index1 ON test1(a);
CREATE INDEX index2 ON test1(b);
CREATE INDEX index3 ON test1(a,b);
DROP TABLE test1;
SELECT "name" FROM "_space" WHERE "name"='TEST1';
]], {
-- <index-6.4>
-- </index-6.4>
})
-- integrity_check index-6.5
-- Create a primary key
--
test:do_test(
"index-7.1",
function()
test:execsql "CREATE TABLE test1(f1 int, f2 int primary key)"
local val = 2
for i = 1, 19, 1 do
test:execsql(string.format("INSERT INTO test1 VALUES(%s,%s)", i, val))
val = val * 2
end
return test:execsql "SELECT count(*) FROM test1"
end, {
-- <index-7.1>
19
-- </index-7.1>
})
test:do_execsql_test(
"index-7.2",
[[
SELECT f1 FROM test1 WHERE f2=65536
]], {
-- <index-7.2>
16
-- </index-7.2>
})
test:do_execsql_test(
"index-7.3",
[[
SELECT "name" FROM "_index" WHERE "name"='pk_unnamed_TEST1_1'
]], {
-- <index-7.3>
"pk_unnamed_TEST1_1"
-- </index-7.3>
})
test:do_test(
"index-7.4",
function()
test:execsql "DROP table test1"
return test:execsql [[SELECT "name" FROM "_space" WHERE "name"='TEST1']]
end, {
-- <index-7.4>
-- </index-7.4>
})
-- integrity_check index-7.5
-- Make sure we cannot drop a non-existant index.
--
test:do_catchsql_test(
"index-8.1",
[[
CREATE TABLE test1(a INT PRIMARY KEY);
DROP INDEX index1 ON test1
]], {
-- <index-8.1>
1, "No index 'INDEX1' is defined in space 'TEST1'"
-- </index-8.1>
})
test:execsql("DROP TABLE IF EXISTS test1")
-- Make sure we don't actually create an index when the EXPLAIN keyword
-- is used.
--
test:do_test(
"index-9.1",
function()
test:execsql "CREATE TABLE tab1(id INT primary key, a int)"
test:execsql "EXPLAIN CREATE INDEX idx1 ON tab1(a)"
return test:execsql [[SELECT "name" FROM "_space" WHERE "name"='TAB1']]
end, {
-- <index-9.1>
"TAB1"
-- </index-9.1>
})
test:do_test(
"index-9.2",
function()
test:execsql "CREATE INDEX idx1 ON tab1(a)"
return test:execsql [[SELECT "name" FROM "_index" WHERE "name"='IDX1' union SELECT "name" FROM "_space" WHERE "name"='TAB1']]
end, {
-- <index-9.2>
"IDX1", "TAB1"
-- </index-9.2>
})
-- integrity_check index-9.3
-- Allow more than one entry with the same key.
--
test:do_execsql_test(
"index-10.0",
[[
CREATE TABLE t1(id INT primary key, a int, b int);
CREATE INDEX i1 ON t1(a);
INSERT INTO t1 VALUES(1, 1,2);
INSERT INTO t1 VALUES(2, 2,4);
INSERT INTO t1 VALUES(3, 3,8);
INSERT INTO t1 VALUES(4, 1,12);
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]], {
-- <index-10.0>
2, 12
-- </index-10.0>
})
test:do_execsql_test(
"index-10.1",
[[
SELECT b FROM t1 WHERE a=2 ORDER BY b;
]], {
-- <index-10.1>
4
-- </index-10.1>
})
test:do_execsql_test(
"index-10.2",
[[
DELETE FROM t1 WHERE b=12;
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]], {
-- <index-10.2>
2
-- </index-10.2>
})
test:do_execsql_test(
"index-10.3",
[[
DELETE FROM t1 WHERE b=2;
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]], {
-- <index-10.3>
-- </index-10.3>
})
test:do_execsql_test(
"index-10.4",
[[
DELETE FROM t1;
INSERT INTO t1 VALUES (1, 1,1);
INSERT INTO t1 VALUES (2, 1,2);
INSERT INTO t1 VALUES (3, 1,3);
INSERT INTO t1 VALUES (4, 1,4);
INSERT INTO t1 VALUES (5, 1,5);
INSERT INTO t1 VALUES (6, 1,6);
INSERT INTO t1 VALUES (7, 1,7);
INSERT INTO t1 VALUES (8, 1,8);
INSERT INTO t1 VALUES (9, 1,9);
INSERT INTO t1 VALUES (10, 2,0);
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]], {
-- <index-10.4>
1, 2, 3, 4, 5, 6, 7, 8, 9
-- </index-10.4>
})
test:do_test(
"index-10.5",
function()
test:execsql " DELETE FROM t1 WHERE b IN (2, 4, 6, 8); "
return test:execsql [[
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]]
end, {
-- <index-10.5>
1, 3, 5, 7, 9
-- </index-10.5>
})
test:do_execsql_test(
"index-10.6",
[[
DELETE FROM t1 WHERE b>2;
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]], {
-- <index-10.6>
1
-- </index-10.6>
})
test:do_execsql_test(
"index-10.7",
[[
DELETE FROM t1 WHERE b=1;
SELECT b FROM t1 WHERE a=1 ORDER BY b;
]], {
-- <index-10.7>
-- </index-10.7>
})
test:do_execsql_test(
"index-10.8",
[[
SELECT b FROM t1 ORDER BY b;
]], {
-- <index-10.8>
0
-- </index-10.8>
})
-- integrity_check index-10.9
-- Automatically create an index when we specify a primary key.
--
-- Tarantool: WITHOUT ROWID is by default, so search count is less
-- by one. Expected result changed {0.1 2} -> {0.1 1}
-- MUST_WORK_TEST uses internal variables (sql_search_count)
if 0>0 then
test:do_test(
"index-11.1",
function()
test:execsql [[
CREATE TABLE t3(
a text,
b int,
c NUMBER,
PRIMARY KEY(b)
);
]]
for i = 1, 50, 1 do
test:execsql(string.format("INSERT INTO t3 VALUES('x%sx',%s,0.%s)", i, i, i))
end
sql_search_count = 0
return X(381, "X!cmd", [=[["concat",[["execsql","SELECT c FROM t3 WHERE b==10"]],["sql_search_count"]]]=])
end, {
-- <index-11.1>
0.1, 1
-- </index-11.1>
})
end
test:do_execsql_test(
"index-12.1",
[[
CREATE TABLE t4(id INT primary key, a NUMBER,b INT );
INSERT INTO t4 VALUES(1, 0.0, 1);
INSERT INTO t4 VALUES(2, 0.00, 2);
INSERT INTO t4 VALUES(4, -1.0, 4);
INSERT INTO t4 VALUES(5, +1.0, 5);
INSERT INTO t4 VALUES(6, 0, 6);
INSERT INTO t4 VALUES(7, 00000, 7);
SELECT a FROM t4 ORDER BY b;
]], {
-- <index-12.1>
0, 0, -1, 1, 0, 0
-- </index-12.1>
})
test:do_execsql_test(
"index-12.2",
[[
SELECT a FROM t4 WHERE a==0 ORDER BY b
]], {
-- <index-12.2>
0, 0, 0, 0
-- </index-12.2>
})
test:do_execsql_test(
"index-12.3",
[[
SELECT a FROM t4 WHERE a<0.5 ORDER BY b
]], {
-- <index-12.3>
0, 0, -1, 0, 0
-- </index-12.3>
})
test:do_execsql_test(
"index-12.4",
[[
SELECT a FROM t4 WHERE a>-0.5 ORDER BY b
]], {
-- <index-12.4>
0, 0, 1, 0, 0
-- </index-12.4>
})
test:do_execsql_test(
"index-12.5",
[[
CREATE INDEX t4i1 ON t4(a);
SELECT a FROM t4 WHERE a==0 ORDER BY b
]], {
-- <index-12.5>
0, 0, 0, 0
-- </index-12.5>
})
test:do_execsql_test(
"index-12.6",
[[
SELECT a FROM t4 WHERE a<0.5 ORDER BY b
]], {
-- <index-12.6>
0, 0, -1, 0, 0
-- </index-12.6>
})
test:do_execsql_test(
"index-12.7",
[[
SELECT a FROM t4 WHERE a>-0.5 ORDER BY b
]], {
-- <index-12.7>
0, 0, 1, 0, 0
-- </index-12.7>
})
-- integrity_check index-12.8
-- Make sure we cannot drop an automatically created index.
--
test:do_execsql_test(
"index-13.1",
[[
CREATE TABLE t5(
a int UNIQUE,
b NUMBER PRIMARY KEY,
c TEXT,
UNIQUE(a,c)
);
INSERT INTO t5 VALUES(1,2,'3');
SELECT * FROM t5;
]], {
-- <index-13.1>
1, 2.0, "3"
-- </index-13.1>
})
-- do_test index-13.2 {
-- set ::idxlist [execsql {
-- SELECT name FROM sql_master WHERE type="index" AND tbl_name="t5";
-- }]
-- llength $::idxlist
-- } {3}
-- for {set i 0} {$i<[llength $::idxlist]} {incr i} {
-- do_test index-13.3.$i {
-- catchsql "
-- DROP INDEX '[lindex $::idxlist $i]';
-- "
-- } {1 {index associated with UNIQUE or PRIMARY KEY constraint cannot be dropped}}
-- }
-- do_test index-13.4 {
-- execsql {
-- INSERT INTO t5 VALUES('a','b','c');
-- SELECT * FROM t5;
-- }
-- } {1 2.0 3 a b c}
-- integrity_check index-13.5
-- Check the sort order of data in an index.
--
test:do_execsql_test(
"index-14.1",
[[
CREATE TABLE t6(id INT primary key, a TEXT,b TEXT ,c INT );
CREATE INDEX t6i1 ON t6(a,b);
INSERT INTO t6 VALUES(1, '','',1);
INSERT INTO t6 VALUES(2, '',NULL,2);
INSERT INTO t6 VALUES(3, NULL,'',3);
INSERT INTO t6 VALUES(4, 'abc','123',4);
INSERT INTO t6 VALUES(5, '123','abc',5);
SELECT c FROM t6 ORDER BY a,b;
]], {
-- <index-14.1>
3, 2, 1, 5, 4
-- </index-14.1>
})
test:do_execsql_test(
"index-14.2",
[[
SELECT c FROM t6 WHERE a='';
]], {
-- <index-14.2>
2, 1
-- </index-14.2>
})
test:do_execsql_test(
"index-14.3",
[[
SELECT c FROM t6 WHERE b='';
]], {
-- <index-14.3>
1, 3
-- </index-14.3>
})
test:do_execsql_test(
"index-14.4",
[[
SELECT c FROM t6 WHERE a>'';
]], {
-- <index-14.4>
5, 4
-- </index-14.4>
})
test:do_execsql_test(
"index-14.5",
[[
SELECT c FROM t6 WHERE a>='';
]], {
-- <index-14.5>
2, 1, 5, 4
-- </index-14.5>
})
test:do_catchsql_test(
"index-14.6",
[[
SELECT c FROM t6 WHERE a>123;
]], {
-- <index-14.6>
1, "Type mismatch: can not convert to numeric"
-- </index-14.6>
})
test:do_catchsql_test(
"index-14.7",
[[
SELECT c FROM t6 WHERE a>=123;
]], {
-- <index-14.7>
1, "Type mismatch: can not convert to numeric"
-- </index-14.7>
})
test:do_execsql_test(
"index-14.8",
[[
SELECT c FROM t6 WHERE a<'abc';
]], {
-- <index-14.8>
2, 1, 5
-- </index-14.8>
})
test:do_execsql_test(
"index-14.9",
[[
SELECT c FROM t6 WHERE a<='abc';
]], {
-- <index-14.9>
2, 1, 5, 4
-- </index-14.9>
})
test:do_execsql_test(
"index-14.10",
[[
SELECT c FROM t6 WHERE a<='';
]], {
-- <index-14.10>
2, 1
-- </index-14.10>
})
test:do_execsql_test(
"index-14.11",
[[
SELECT c FROM t6 WHERE a<'';
]], {
-- <index-14.11>
-- </index-14.11>
})
-- integrity_check index-14.12
test:do_execsql_test(
"index-15.1",
[[
DELETE FROM t1;
SELECT * FROM t1;
]], {
-- <index-15.1>
-- </index-15.1>
})
-- do_test index-15.2 {
-- execsql {
-- INSERT INTO t1 VALUES(1, '1.234e5',1);
-- INSERT INTO t1 VALUES(2, '12.33e04',2);
-- INSERT INTO t1 VALUES(3, '12.35E4',3);
-- INSERT INTO t1 VALUES(4, '12.34e',4);
-- INSERT INTO t1 VALUES(5, '12.32e+4',5);
-- INSERT INTO t1 VALUES(6, '12.36E+04',6);
-- INSERT INTO t1 VALUES(7, '12.36E+',7);
-- INSERT INTO t1 VALUES(8, '+123.10000E+0003',8);
-- INSERT INTO t1 VALUES(9, '+',9);
-- INSERT INTO t1 VALUES(10, '+12347.E+02',10);
-- INSERT INTO t1 VALUES(11, '+12347E+02',11);
-- INSERT INTO t1 VALUES(12, '+.125E+04',12);
-- INSERT INTO t1 VALUES(13, '-.125E+04',13);
-- INSERT INTO t1 VALUES(14, '.125E+0',14);
-- INSERT INTO t1 VALUES(15, '.125',15);
-- SELECT b FROM t1 ORDER BY a, b;
-- }
-- } {13 14 15 12 8 5 2 1 3 6 10 11 9 4 7}
-- # do_test index-15.3 {
-- execsql {
-- SELECT b FROM t1 WHERE typeof(a) IN ('integer','float') ORDER BY b;
-- }
-- } {1 2 3 5 6 8 10 11 12 13 14 15}
-- integrity_check index-15.4
-- The following tests - index-16.* - test that when a table definition
-- includes qualifications that specify the same constraint twice only a
-- single index is generated to enforce the constraint.
--
-- For example: "CREATE TABLE abc( x INT PRIMARY KEY, UNIQUE(x) );"
--
test:do_execsql_test(
"index-16.1",
[[
CREATE TABLE t7(c INT PRIMARY KEY);
SELECT count(*) FROM "_index" JOIN "_space" WHERE "_index"."id" = "_space"."id" AND "_space"."name"='T7';
]], {
-- <index-16.1>
1
-- </index-16.1>
})
test:do_execsql_test(
"index-16.2",
[[
DROP TABLE t7;
CREATE TABLE t7(c INT UNIQUE PRIMARY KEY);
SELECT count(*) FROM "_index" JOIN "_space" WHERE "_index"."id" = "_space"."id" AND "_space"."name"='T7';
]], {
-- <index-16.2>
1
-- </index-16.2>
})
test:do_execsql_test(
"index-16.3",
[[
DROP TABLE t7;
CREATE TABLE t7(c INT PRIMARY KEY, UNIQUE(c) );
SELECT count(*) FROM "_index" JOIN "_space" WHERE "_index"."id" = "_space"."id" AND "_space"."name"='T7';
]], {
-- <index-16.3>
1
-- </index-16.3>
})
test:do_execsql_test(
"index-16.4",
[[
DROP TABLE t7;
CREATE TABLE t7(c INT , d INT , UNIQUE(c, d), PRIMARY KEY(c, d) );
SELECT count(*) FROM "_index" JOIN "_space" WHERE "_index"."id" = "_space"."id" AND "_space"."name"='T7';
]], {
-- <index-16.4>
1
-- </index-16.4>
})
test:do_execsql_test(
"index-16.5",
[[
DROP TABLE t7;
CREATE TABLE t7(c INT , d INT , UNIQUE(c), PRIMARY KEY(c, d) );
SELECT count(*) FROM "_index" JOIN "_space" WHERE "_index"."id" = "_space"."id" AND "_space"."name"='T7';
]], {
-- <index-16.5>
2
-- </index-16.5>
})
-- Test that automatically create indices are named correctly. The current
-- convention is: "sql_autoindex_<table name>_<integer>"
--
-- Then check that it is an error to try to drop any automtically created
-- indices.
test:do_execsql_test(
"index-17.1",
[[
DROP TABLE t7;
CREATE TABLE t7(c INT , d INT UNIQUE, UNIQUE(c), PRIMARY KEY(c, d) );
SELECT "_index"."name" FROM "_index" JOIN "_space" WHERE "_index"."id" = "_space"."id" AND "_space"."name"='T7';
]], {
-- <index-17.1>
"pk_unnamed_T7_3","unique_unnamed_T7_1","unique_unnamed_T7_2"
-- </index-17.1>
})
-- do_test index-17.2 {
-- catchsql {
-- DROP INDEX sql_autoindex_t7_1;
-- }
-- } {1 {index associated with UNIQUE or PRIMARY KEY constraint cannot be dropped}}
-- do_test index-17.3 {
-- catchsql {
-- DROP INDEX IF EXISTS sql_autoindex_t7_1;
-- }
-- } {1 {index associated with UNIQUE or PRIMARY KEY constraint cannot be dropped}}
test:do_catchsql_test(
"index-17.4",
[[
DROP INDEX IF EXISTS no_such_index ON t7;
]], {
-- <index-17.4>
0
-- </index-17.4>
})
test:do_execsql_test(
"index-17.5",
[[
DROP TABLE t7;
]], {
})
-- Try to create a TEMP index on a non-TEMP table. */
--
test:do_catchsql_test(
"index-21.1",
[[
CREATE INDEX temp.i21 ON t6(c);
]], {
-- <index-21.1>
1, "Syntax error at line 1 near '.'"
-- </index-21.1>
})
-- MUST_WORK_TEST different schemas not supported
if (0 > 0)
then
test:do_catchsql_test(
"index-21.2",
[[
CREATE TABLE t6(x INT primary key);
INSERT INTO temp.t6 values(1),(5),(9);
CREATE INDEX temp.i21 ON t6(x);
SELECT x FROM t6 ORDER BY x DESC;
]], {
-- <index-21.2>
0, {9, 5, 1}
-- </index-21.2>
})
end
test:do_test(
"index-22.1.0",
function()
format = {}
format[1] = { name = 'id', type = 'scalar'}
format[2] = { name = 'f2', type = 'scalar'}
s = box.schema.create_space('T', {format = format})
end,
{})
test:do_catchsql_test(
"alter-8.1.1",
[[
CREATE UNIQUE INDEX pk ON t("id");
]], {
1, "Can't modify space 'T': can not add a secondary key before primary"
})
test:do_catchsql_test(
"alter-8.2",
[[
ALTER TABLE t ADD CONSTRAINT pk PRIMARY KEY("id");
CREATE UNIQUE INDEX i ON t("id");
]], {
0
})
test:finish_test()
|