blob: a6301ff5c483624ca3f969a3fbca24a73662db06 [file] [log] [blame]
====
---- QUERY
select * from tinytable
---- TYPES
string, string
---- RESULTS
'aaaaaaa','bbbbbbb'
'ccccc','dddd'
'eeeeeeee','f'
====
---- QUERY
select a from tinytable
---- TYPES
string
---- RESULTS
'aaaaaaa'
'ccccc'
'eeeeeeee'
====
---- QUERY
select count(*) from alltypessmall
---- TYPES
bigint
---- RESULTS
100
====