blob: f6f0faf030df910a540ee515f7d06d3832155ba4 [file]
====
---- QUERY: PERF_STRING-Q1
SELECT count(*) FROM lineitem
WHERE l_comment = 'egular courts above the'
---- RESULTS
1
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q2
SELECT count(*) FROM lineitem
WHERE l_comment LIKE 'egular courts above the'
---- RESULTS
1
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q3
SELECT count(*) FROM lineitem
WHERE l_comment LIKE 'egular courts above the%'
---- RESULTS
6
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q4
SELECT count(*) FROM lineitem
WHERE l_comment LIKE '%egular courts above the'
---- RESULTS
3
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q5
SELECT count(*) FROM lineitem
WHERE l_comment LIKE '%egular courts above the%'
---- RESULTS
28
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q6
SELECT count(*) FROM lineitem
WHERE l_comment LIKE 'egular courts above th%e'
---- RESULTS
2
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q7
-- Make sure we free local expr allocations
SELECT count(*) FROM lineitem
WHERE lower(l_comment) = 'egular courts above the'
---- RESULTS
1
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q8
-- Make sure utf8 string functions are inlined in jitted codes so the checks for
-- utf8 mode are replaced with constants
SELECT count(*) FROM lineitem
WHERE instr(l_comment, 'egular courts above the') > 0
---- RESULTS
28
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q9
-- Make sure utf8 string functions are inlined in jitted codes so the checks for
-- utf8 mode are replaced with constants
SELECT count(*) FROM lineitem
WHERE mask(l_comment) is null
---- RESULTS
0
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q10
-- Make sure utf8 string functions are inlined in jitted codes so the checks for
-- utf8 mode are replaced with constants
SELECT count(*) FROM lineitem
WHERE mask_first_n(l_comment) is null
---- RESULTS
0
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q11
-- Make sure utf8 string functions are inlined in jitted codes so the checks for
-- utf8 mode are replaced with constants
SELECT count(*) FROM lineitem
WHERE mask_show_first_n(l_comment) is null
---- RESULTS
0
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q12
-- Make sure utf8 string functions are inlined in jitted codes so the checks for
-- utf8 mode are replaced with constants
SELECT count(*) FROM lineitem
WHERE mask_last_n(l_comment) is null
---- RESULTS
0
---- TYPES
BIGINT
====
---- QUERY: PERF_STRING-Q13
-- Make sure utf8 string functions are inlined in jitted codes so the checks for
-- utf8 mode are replaced with constants
SELECT count(*) FROM lineitem
WHERE mask_show_last_n(l_comment) is null
---- RESULTS
0
---- TYPES
BIGINT
====