Support SQLite column definitions with no type (#1075)

This commit is contained in:
Thomas Kluyver 2024-01-01 17:45:25 +00:00 committed by GitHub
parent a75778c8c7
commit a430d1a5a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 51 additions and 3 deletions

View file

@ -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