mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-12 06:52:02 +00:00
Support SQLite column definitions with no type (#1075)
This commit is contained in:
parent
a75778c8c7
commit
a430d1a5a7
6 changed files with 51 additions and 3 deletions
|
@ -65,7 +65,9 @@ macro_rules! dialect_of {
|
|||
/// encapsulates the parsing differences between dialects.
|
||||
///
|
||||
/// [`GenericDialect`] is the most permissive dialect, and parses the union of
|
||||
/// all the other dialects, when there is no ambiguity.
|
||||
/// all the other dialects, when there is no ambiguity. However, it does not
|
||||
/// currently allow `CREATE TABLE` statements without types specified for all
|
||||
/// columns; use [`SQLiteDialect`] if you require that.
|
||||
///
|
||||
/// # Examples
|
||||
/// Most users create a [`Dialect`] directly, as shown on the [module
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue