File: distinctagg.test.lua

package info (click to toggle)
tarantool 2.6.0-1.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 85,396 kB
  • sloc: ansic: 513,775; cpp: 69,493; sh: 25,650; python: 19,190; perl: 14,973; makefile: 4,176; yacc: 1,329; sql: 1,074; pascal: 620; ruby: 190; awk: 18; lisp: 7
file content (93 lines) | stat: -rwxr-xr-x 2,556 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
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(6)

--!./tcltestrunner.lua
-- 2005 September 11
--
-- 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 script is the DISTINCT modifier on aggregate functions.
--
-- $Id: distinctagg.test,v 1.3 2009/02/09 13:19:28 drh Exp $
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
test:do_execsql_test(
    "distinctagg-1.1",
    [[
        CREATE TABLE t1(a INT,b INT,c INT primary key);
        INSERT INTO t1 VALUES(1,2,3);
        INSERT INTO t1 VALUES(1,3,4);
        INSERT INTO t1 VALUES(1,3,5);
        SELECT count(distinct a),
               count(distinct b),
               count(distinct c),
               count(all a) FROM t1;
    ]], {
        -- <distinctagg-1.1>
        1, 2, 3, 3
        -- </distinctagg-1.1>
    })

test:do_execsql_test(
    "distinctagg-1.2",
    [[
        SELECT b, count(distinct c) FROM t1 GROUP BY b ORDER BY b
    ]], {
        -- <distinctagg-1.2>
        2, 1, 3, 2
        -- </distinctagg-1.2>
    })

test:do_execsql_test(
    "distinctagg-1.3",
    [[
        INSERT INTO t1 SELECT a+1, b+3, c+5 FROM t1;
        INSERT INTO t1 SELECT a+2, b+6, c+10 FROM t1;
        INSERT INTO t1 SELECT a+4, b+12, c+20 FROM t1;
        SELECT count(*), count(distinct a), count(distinct b) FROM t1
    ]], {
        -- <distinctagg-1.3>
        24, 8, 16
        -- </distinctagg-1.3>
    })

test:do_execsql_test(
    "distinctagg-1.4",
    [[
        SELECT a, count(distinct c) FROM t1 GROUP BY a ORDER BY a
    ]], {
        -- <distinctagg-1.4>
        1, 3, 2, 3, 3, 3, 4, 3, 5, 3, 6, 3, 7, 3, 8, 3
        -- </distinctagg-1.4>
    })

test:do_catchsql_test(
    "distinctagg-2.1",
    [[
        SELECT count(distinct) FROM t1;
    ]], {
        -- <distinctagg-2.1>
        1, "DISTINCT aggregates must have exactly one argument"
        -- </distinctagg-2.1>
    })

test:do_catchsql_test(
    "distinctagg-2.2",
    [[
        SELECT group_concat(distinct a,b) FROM t1;
    ]], {
        -- <distinctagg-2.2>
        1, "DISTINCT aggregates must have exactly one argument"
        -- </distinctagg-2.2>
    })

test:finish_test()