Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions c/parser.php.lemon
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ update_statement(R) ::= update_clause(U) where_clause(W) limit_clause(L) . {
zval_ptr_dtor(&$$);
}

update_clause(R) ::= UPDATE associated_name(A) SET update_item_list(U) . {
phql_ret_update_clause(&R, &A, &U);
update_clause(R) ::= UPDATE associated_name(A) join_list_or_null(J) SET update_item_list(U) . {
phql_ret_update_clause(&R, &A, &J, &U);
}

%destructor update_item_list {
Expand Down
Loading
Loading