File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3020,9 +3020,17 @@ private function translate_insert_or_replace_body_in_non_strict_mode(
3020
3020
}
3021
3021
3022
3022
// 6. Wrap the original insert VALUES or SELECT expression in a FROM clause.
3023
- $ values = 'insertFromConstructor ' === $ node ->rule_name
3023
+ $ values = 'insertFromConstructor ' === $ node ->rule_name
3024
3024
? $ node ->get_first_child_node ( 'insertValues ' )
3025
3025
: $ node ->get_first_child_node ( 'queryExpressionOrParens ' );
3026
+
3027
+ /*
3028
+ * The "WHERE true" suffix is used to avoid parsing ambiguity in SQLite.
3029
+ * When an "ON CONFLICT" clause is used and there is no "WHERE", SQLite
3030
+ * doesn't know if "ON" belongs to a "JOIN" or an "ON CONFLICT" clause.
3031
+ *
3032
+ * See: https://www.sqlite.org/lang_insert.html
3033
+ */
3026
3034
$ fragment .= ' FROM ( ' . $ this ->translate ( $ values ) . ') WHERE true ' ;
3027
3035
3028
3036
return $ fragment ;
You can’t perform that action at this time.
0 commit comments