mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
adding delimited (#1155)
This commit is contained in:
parent
fb7d4d40cc
commit
6f090e5547
4 changed files with 148 additions and 3 deletions
|
@ -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 =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue