Skip to content

Commit

Permalink
[parser] model: add in union flag (pingcap#351)
Browse files Browse the repository at this point in the history
Signed-off-by: Lonng <[email protected]>
  • Loading branch information
lonng authored Jun 12, 2019
1 parent 74c46c4 commit 45d4322
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions parser/model/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ const (
FlagIgnoreZeroInDate = 1 << 7
// FlagDividedByZeroAsWarning indicates if DividedByZero should be returned as warning.
FlagDividedByZeroAsWarning = 1 << 8
// FlagInUnionStmt indicates if this is a UNION statement.
FlagInUnionStmt = 1 << 9
)

0 comments on commit 45d4322

Please sign in to comment.