File: tkt1537.test.lua

package info (click to toggle)
tarantool 2.6.0-1.4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 85,412 kB
  • sloc: ansic: 513,775; cpp: 69,493; sh: 25,650; python: 19,190; perl: 14,973; makefile: 4,178; yacc: 1,329; sql: 1,074; pascal: 620; ruby: 190; awk: 18; lisp: 7
file content (206 lines) | stat: -rwxr-xr-x 5,067 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(15)

--!./tcltestrunner.lua
-- 2005 November 26
--
-- 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.
--
-- This file implements tests to verify that ticket #1537 is
-- fixed.  
--
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
test:do_execsql_test(
    "tkt1537-1.1",
    [[
        CREATE TABLE t1(id INT primary key, a1 INT, a2 INT);
        INSERT INTO t1 VALUES(1, NULL, NULL);
        INSERT INTO t1 VALUES(2, 1, 3);
        CREATE TABLE t2(id INT primary key, b INT);
        INSERT INTO t2 VALUES(3, 1);
        INSERT INTO t2 VALUES(4, NULL);
        SELECT * FROM t1 LEFT JOIN t2 ON a1=b OR a2=+b;
    ]], {
        -- <tkt1537-1.1>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-1.1>
    })

test:do_execsql_test(
    "tkt1537-1.2",
    [[
        SELECT * FROM t1 LEFT JOIN t2 ON a1=b OR a2=b;
    ]], {
        -- <tkt1537-1.2>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-1.2>
    })

test:do_execsql_test(
    "tkt1537-1.3",
    [[
        SELECT * FROM t2 LEFT JOIN t1 ON a1=b OR a2=b;
    ]], {
        -- <tkt1537-1.3>
        3, 1, 2, 1, 3, 4, "", "", "", ""
        -- </tkt1537-1.3>
    })

test:do_execsql_test(
    "tkt1537-1.4",
    [[
        SELECT * FROM t1 LEFT JOIN t2 ON b IN (a1,a2);
    ]], {
        -- <tkt1537-1.4>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-1.4>
    })

test:do_execsql_test(
    "tkt1537-1.5",
    [[
        SELECT * FROM t2 LEFT JOIN t1 ON b IN (a2,a1);
    ]], {
        -- <tkt1537-1.5>
        3, 1, 2, 1, 3, 4, "", "", "", ""
        -- </tkt1537-1.5>
    })



test:do_execsql_test(
    "tkt1537-1.6",
    [[
        CREATE INDEX t1a1 ON t1(a1);
        CREATE INDEX t1a2 ON t1(a2);
        CREATE INDEX t2b ON t2(b);
        SELECT * FROM t1 LEFT JOIN t2 ON a1=b OR a2=b;
    ]], {
        -- <tkt1537-1.6>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-1.6>
    })

test:do_execsql_test(
    "tkt1537-1.7",
    [[
        SELECT * FROM t2 LEFT JOIN t1 ON a1=b OR a2=b;
    ]], {
        -- <tkt1537-1.7>
        -- order changed after reordering indexes (it is ok because order is not specified)
        --4, "", "", "", "", 3, 1, 2, 1, 3
        3,1,2,1,3,4,"","","",""
        -- </tkt1537-1.7>
    })

test:do_execsql_test(
    "tkt1537-1.8",
    [[
        SELECT * FROM t1 LEFT JOIN t2 ON b IN (a1,a2);
    ]], {
        -- <tkt1537-1.8>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-1.8>
    })

test:do_execsql_test(
    "tkt1537-1.9",
    [[
        SELECT * FROM t2 LEFT JOIN t1 ON b IN (a2,a1);
    ]], {
        -- <tkt1537-1.9>
        -- order changed after reordering indexes (it is ok because order is not specified)
        --4, "", "", "", "", 3, 1, 2, 1, 3
        3,1,2,1,3,4,"","","",""
        -- </tkt1537-1.9>
    })



test:execsql [[
    DROP INDEX t1a1 ON t1;
    DROP INDEX t1a2 ON t1;
    DROP INDEX t2b ON t2;
]]
test:do_execsql_test(
    "tkt1537-2.1",
    [[
        SELECT * FROM t1 LEFT JOIN t2 ON b BETWEEN a1 AND a2;
    ]], {
        -- <tkt1537-2.1>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-2.1>
    })

test:do_execsql_test(
    "tkt1537-2.2",
    [[
        CREATE INDEX t2b ON t2(b);
        SELECT * FROM t1 LEFT JOIN t2 ON b BETWEEN a1 AND a2;
    ]], {
        -- <tkt1537-2.2>
        1, "", "", "", "", 2, 1, 3, 3, 1
        -- </tkt1537-2.2>
    })

test:do_execsql_test(
    "tkt1537-2.3",
    [[
        SELECT * FROM t2 LEFT JOIN t1 ON b BETWEEN a1 AND a2;
    ]], {
        -- <tkt1537-2.3>
        -- order changed after reordering indexes (it is ok because order is not specified)
        --4, "", "", "", "", 3, 1, 2, 1, 3
        3,1,2,1,3,4,"","","",""


;
    -- </tkt1537-2.3>
    })

test:do_execsql_test(
    "tkt1537-2.4",
    [[
        CREATE INDEX t1a1 ON t1(a1);
        CREATE INDEX t1a2 ON t1(a2);
        SELECT * FROM t2 LEFT JOIN t1 ON b BETWEEN a1 AND a2;
    ]], {
        -- <tkt1537-2.4>
        -- order changed after reordering indexes (it is ok because order is not specified)
        --4, "", "", "", "", 3, 1, 2, 1, 3
        3,1,2,1,3,4,"","","",""
        -- </tkt1537-2.4>
    })

test:do_execsql_test(
    "tkt1537-3.1",
    [[
        SELECT * FROM t1 LEFT JOIN t2 ON printf('%d', b) LIKE 'abc%' WHERE t1.id=1;
    ]], {
        -- <tkt1537-3.1>
        1, "", "", "", ""
        -- </tkt1537-3.1>
    })

test:do_execsql_test(
    "tkt1537-3.2",
    [[
        SELECT * FROM t2 LEFT JOIN t1 ON printf('%d', a1) LIKE 'abc%' WHERE t2.id=3;
    ]], {
        -- <tkt1537-3.2>
        3, 1, "", "", ""
        -- </tkt1537-3.2>
    })

test:finish_test()