We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ade35cd + e42c15b commit 443ce34Copy full SHA for 443ce34
go/vt/sqlparser/ast.go
@@ -144,6 +144,7 @@ type (
144
// Update represents an UPDATE statement.
145
// If you add fields here, consider adding them to calls to validateUnshardedRoute.
146
Update struct {
147
+ Action string
148
Comments Comments
149
Ignore string
150
TableExprs TableExprs
go/vt/sqlparser/constants.go
@@ -38,6 +38,7 @@ const (
38
// DDL strings.
39
InsertStr = "insert"
40
ReplaceStr = "replace"
41
+ UpdateStr = "update"
42
43
// Set.Scope or Show.Scope
44
SessionStr = "session"
0 commit comments