File: between.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 (209 lines) | stat: -rwxr-xr-x 5,493 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
207
208
209
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(11)

--!./tcltestrunner.lua
-- 2005 July 28
--
-- 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 use of indices in WHERE clauses
-- when the WHERE clause contains the BETWEEN operator.
--
-- $Id: between.test,v 1.2 2006/01/17 09:35:02 danielk1977 Exp $
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
-- Build some test data
--
test:do_test(
    "between-1.0",
    function()
        test:execsql([[
            CREATE TABLE t1(w int primary key, x int, y int, z int);
        ]])
        for i = 1, 100, 1 do
            w = i
            x = math.floor((math.log(i)/math.log(2)))
            y = (((i * i) + (2 * i)) + 1)
            z = (x + y)
            -- Random unplanned test of the $varname variable syntax.
            test:execsql(string.format("INSERT INTO t1 VALUES(%s,%s,%s,%s)", w, x, y, z))
        end
        return test:execsql([[
            CREATE INDEX i1xy ON t1(x,y);
            CREATE INDEX i1zyx ON t1(z,y,x);
        ]])
    end, {
        -- <between-1.0>
        
        -- </between-1.0>
    })

-- This procedure executes the SQL.  Then it appends to the result the
-- "sort" or "nosort" keyword depending on whether or not any sorting
-- is done.  Then it appends the names of the table and index used.
--
local function queryplan(sql)
    local sql_sort_count = box.stat.sql().sql_sort_count
    local data = test:execsql(sql)
    local x = "nosort"
    if box.stat.sql().sql_sort_count - sql_sort_count then
        x = "sort"
    end
    table.insert(data,x)
    local eqp = box.execute("EXPLAIN QUERY PLAN "..sql.."").rows
    -- puts eqp=$eqp
    for i, val in ipairs(eqp) do
        --local a = val[1]
        --local b = val[2]
        --local c = val[3]
        local x = val[4]
        local tab, idx = string.match(x, "TABLE (%w+) USING.* INDEX (%w+)")

        if tab then
            table.insert(data, tab)
            table.insert(data, idx)
        else
            tab = string.match(x, "TABLE (%w+)")
            if tab then
                table.insert(data, tab)
                table.insert(data, "*")
            end
        end
    end
    return data
end

test:do_test(
    "between-1.1.1",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE w BETWEEN 5 AND 6 ORDER BY +w
  ]])
    end, {
        -- <between-1.1.1>
        --5, 2, 36, 38, 6, 2, 49, 51, "sort", "t1", "i1w"
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.1.1>
    })

test:do_test(
    "between-1.1.2",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE +w BETWEEN 5 AND 6 ORDER BY +w
  ]])
    end, {
        -- <between-1.1.2>
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.1.2>
    })

test:do_test(
    "between-1.2.1",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE w BETWEEN 5 AND 65-y ORDER BY +w
  ]])
    end, {
        -- <between-1.2.1>
        --5, 2, 36, 38, 6, 2, 49, 51, "sort", "t1", "i1w"
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.2.1>
    })

test:do_test(
    "between-1.2.2",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE +w BETWEEN 5 AND 65-y ORDER BY +w
  ]])
    end, {
        -- <between-1.2.2>
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.2.2>
    })

test:do_test(
    "between-1.3.1",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE w BETWEEN 41-y AND 6 ORDER BY +w
  ]])
    end, {
        -- <between-1.3.1>
        --5, 2, 36, 38, 6, 2, 49, 51, "sort", "t1", "i1w"
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.3.1>
    })

test:do_test(
    "between-1.3.2",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE +w BETWEEN 41-y AND 6 ORDER BY +w
  ]])
    end, {
        -- <between-1.3.2>
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.3.2>
    })

test:do_test(
    "between-1.4",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE w BETWEEN 41-y AND 65-y ORDER BY +w
  ]])
    end, {
        -- <between-1.4>
        5, 2, 36, 38, 6, 2, 49, 51, "sort", "T1", "*"
        -- </between-1.4>
    })

test:do_test(
    "between-1.5.1",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE 26 BETWEEN y AND z ORDER BY +w
  ]])
    end, {
        -- <between-1.5.1>
        4, 2, 25, 27, "sort", "T1", "I1ZYX"
        -- </between-1.5.1>
    })

test:do_test(
    "between-1.5.2",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE 26 BETWEEN +y AND z ORDER BY +w
  ]])
    end, {
        -- <between-1.5.2>
        4, 2, 25, 27, "sort", "T1", "I1ZYX"
        -- </between-1.5.2>
    })

test:do_test(
    "between-1.5.3",
    function()
        return queryplan([[
    SELECT * FROM t1 WHERE 26 BETWEEN y AND +z ORDER BY +w
  ]])
    end, {
        -- <between-1.5.3>
        4, 2, 25, 27, "sort", "T1", "*"
        -- </between-1.5.3>
    })



test:finish_test()