File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ const (
24
24
iERR byte = 0xff
25
25
)
26
26
27
+ // https://dev.mysql.com/doc/internals/en/capability-flags.html#packet-Protocol::CapabilityFlags
27
28
type clientFlag uint32
28
29
29
30
const (
@@ -45,6 +46,13 @@ const (
45
46
clientSecureConn
46
47
clientMultiStatements
47
48
clientMultiResults
49
+ clientPSMultiResults
50
+ clientPluginAuth
51
+ clientConnectAttrs
52
+ clientPluginAuthLenEncClientData
53
+ clientCanHandleExpiredPasswords
54
+ clientSessionTrack
55
+ clientDeprecateEOF
48
56
)
49
57
50
58
const (
@@ -78,6 +86,7 @@ const (
78
86
comStmtFetch
79
87
)
80
88
89
+ // https://dev.mysql.com/doc/internals/en/com-query-response.html#packet-Protocol::ColumnType
81
90
const (
82
91
fieldTypeDecimal byte = iota
83
92
fieldTypeTiny
@@ -132,7 +141,6 @@ const (
132
141
)
133
142
134
143
// http://dev.mysql.com/doc/internals/en/status-flags.html
135
-
136
144
type statusFlag uint16
137
145
138
146
const (
You can’t perform that action at this time.
0 commit comments