From 45d432269ce67103c9971622f5efc4ed048b423a Mon Sep 17 00:00:00 2001 From: Lonng Date: Wed, 12 Jun 2019 10:41:53 +0800 Subject: [PATCH] [parser] model: add in union flag (#351) Signed-off-by: Lonng --- parser/model/flags.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/parser/model/flags.go b/parser/model/flags.go index 33b040edfe42c..f622ac4a621e2 100644 --- a/parser/model/flags.go +++ b/parser/model/flags.go @@ -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 )