Add unit tests.

This commit is contained in:
Zhiyuan Zheng 2019-04-09 13:28:01 +08:00
parent f0f6082eff
commit 26940920ac
3 changed files with 114 additions and 10 deletions

View file

@ -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
));
}
}
}