Skip to content

Commit

Permalink
Remove unused parser rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
asfernandes committed Feb 16, 2017
1 parent 929378c commit d17e224
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/dsql/parse.y
Expand Up @@ -6156,20 +6156,6 @@ cursor_clause

// Assignments

%type <compoundStmtNode> assignments
assignments
: assignment
{
$$ = newNode<CompoundStmtNode>();
$$->statements.add($1);
}
| assignments ',' assignment
{
$1->statements.add($3);
$$ = $1;
}
;

%type <stmtNode> assignment
assignment
: update_column_name '=' value
Expand Down

0 comments on commit d17e224

Please sign in to comment.