Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
query_parser
/
table_name_back_quotes.sql
blob: bbd4e3953b27e5c9277f1ba4a87237971d75d41d [
file
] [
log
] [
blame
]
drop
table
if
exists
dfs
.
drillTestDir
.`
table_4
`;
create
table
dfs
.
drillTestDir
.`
table_4
`
as
SELECT
*
FROM
cp
.`
employee
.
json
`
LIMIT
2
;
--@test
SELECT
employee_id
FROM
dfs
.`/
drill
/
testdata
/
table_4
`
LIMIT
1
;