File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8048,7 +8048,7 @@ impl<'a> Parser<'a> {
8048
8048
self . expect_keyword ( Keyword :: SET ) ?;
8049
8049
let assignments = self . parse_comma_separated ( Parser :: parse_assignment) ?;
8050
8050
let from = if self . parse_keyword ( Keyword :: FROM )
8051
- && dialect_of ! ( self is GenericDialect | PostgreSqlDialect | DuckDbDialect | BigQueryDialect | SnowflakeDialect | RedshiftSqlDialect | MsSqlDialect )
8051
+ && dialect_of ! ( self is GenericDialect | PostgreSqlDialect | DuckDbDialect | BigQueryDialect | SnowflakeDialect | RedshiftSqlDialect | MsSqlDialect | SQLiteDialect )
8052
8052
{
8053
8053
Some ( self . parse_table_and_joins ( ) ?)
8054
8054
} else {
Original file line number Diff line number Diff line change @@ -323,6 +323,7 @@ fn parse_update_set_from() {
323
323
Box :: new( SnowflakeDialect { } ) ,
324
324
Box :: new( RedshiftSqlDialect { } ) ,
325
325
Box :: new( MsSqlDialect { } ) ,
326
+ Box :: new( SQLiteDialect { } ) ,
326
327
] ,
327
328
options : None ,
328
329
} ;
You can’t perform that action at this time.
0 commit comments