mirror of
https://github.com/apache/impala.git
synced 2026-01-02 03:00:32 -05:00
28 lines
408 B
Plaintext
28 lines
408 B
Plaintext
====
|
|
---- 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'
|
|
====
|
|
# This fails due to IMP-636. Re-enable it once that bug gets fixed.
|
|
#---- QUERY
|
|
# select description1 from zipcode_incomes limit 10
|
|
#---- TYPES
|
|
#string
|
|
#---- RESULTS
|
|
#
|
|
#====
|