mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-05 21:50:36 +00:00
Add unit tests.
This commit is contained in:
parent
f0f6082eff
commit
26940920ac
3 changed files with 114 additions and 10 deletions
|
@ -645,7 +645,7 @@ impl Parser {
|
|||
name: table_name,
|
||||
columns,
|
||||
file_format,
|
||||
location
|
||||
location,
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -721,9 +721,9 @@ impl Parser {
|
|||
}
|
||||
other => {
|
||||
return parser_err!(format!(
|
||||
"Expected ',' or ')' after column definition but found {:?}",
|
||||
other
|
||||
));
|
||||
"Expected ',' or ')' after column definition but found {:?}",
|
||||
other
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue