summaryrefslogtreecommitdiffstats
path: root/tests/data/parser/parseSelectErr1.in
blob: 37a1c456bdce1df474cb0b21fbdc4da648a6e8dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SELECT ALL DISTINCT MAX_STATEMENT_TIME = 10
    1 + 2 AS result,
    @idx,
    id,
    test.`users`.username AS
FROM
    `test`.users
    PARTITION (p1, p2)
WHERE
    id > 0
ORDER BY
    username DESC,
    id
LIMIT 2, 3;