mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-31 19:27:21 +00:00
Make a PostgreSQLDialect
Add is_primary and is_unique in the column definition Initial code for testing alter table
This commit is contained in:
parent
74b34faaf1
commit
da153bf848
4 changed files with 135 additions and 23 deletions
|
@ -203,14 +203,6 @@ impl<'a> Tokenizer<'a> {
|
|||
tokens.push(token);
|
||||
}
|
||||
Ok(tokens)
|
||||
/*
|
||||
Ok(tokens
|
||||
.into_iter()
|
||||
.filter(|t| match t {
|
||||
Token::Whitespace(..) => false,
|
||||
_ => true,
|
||||
}).collect())
|
||||
*/
|
||||
}
|
||||
|
||||
/// Get the next token or return None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue