blob: 99a694ced0e2da8d8bf164d60cf4f2cb14cbf1b4 [file] [log] [blame]
====
---- QUERY
# Reproduces IMPALA-6734. Before fixing this would pass if the results had a single
# quote for each value instead of the correct string.
select "a comma,"
from alltypestiny
---- RESULTS
'a comma,'
'a comma,'
'a comma,'
'a comma,'
'a comma,'
'a comma,'
'a comma,'
'a comma,'
---- TYPES
STRING
====
---- QUERY
# Test that escaping single quotes in result string works.
select "'"
---- RESULTS
''''
---- TYPES
STRING
====