adding delimited (#1155)

This commit is contained in:
Jonathan Lehto 2024-03-01 13:55:50 -05:00 committed by GitHub
parent fb7d4d40cc
commit 6f090e5547
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 148 additions and 3 deletions

View file

@ -193,6 +193,12 @@ fn create_temp_table() {
hive().one_statement_parses_to(query2, query);
}
#[test]
fn create_delimited_table() {
let query = "CREATE TABLE tab (cola STRING, colb BIGINT) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' ESCAPED BY '\"' MAP KEYS TERMINATED BY '\"'";
hive().verified_stmt(query);
}
#[test]
fn create_local_directory() {
let query =