Skip to content

Commit

Permalink
Merge pull request pingcap#121 from cznic/master
Browse files Browse the repository at this point in the history
parser/parser.y: S/R conflicts 2->1.
  • Loading branch information
coocood committed Sep 11, 2015
2 parents 6d058fe + 1d23a43 commit 00ba6dc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions parser/parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -2103,10 +2103,7 @@ TableIdent:
}

TableIdentList:
{
$$ = []table.Ident{}
}
| TableIdent
TableIdent
{
tbl := []table.Ident{$1.(table.Ident)}
$$ = tbl
Expand Down

0 comments on commit 00ba6dc

Please sign in to comment.