Merge pull request #67 from hyrise/fix/expr-for-update

Make UPDATE use expression, not literal
This commit is contained in:
mrks 2017-09-12 11:00:37 -07:00 committed by GitHub
commit 6dade78794
2 changed files with 403 additions and 395 deletions

File diff suppressed because it is too large Load Diff

View File

@ -521,7 +521,7 @@ update_clause_commalist:
;
update_clause:
IDENTIFIER '=' literal {
IDENTIFIER '=' expr {
$$ = new UpdateClause();
$$->column = $1;
$$->value = $3;