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 (
2424 iERR byte = 0xff
2525)
2626
27+ // https://dev.mysql.com/doc/internals/en/capability-flags.html#packet-Protocol::CapabilityFlags
2728type clientFlag uint32
2829
2930const (
@@ -45,6 +46,13 @@ const (
4546 clientSecureConn
4647 clientMultiStatements
4748 clientMultiResults
49+ clientPSMultiResults
50+ clientPluginAuth
51+ clientConnectAttrs
52+ clientPluginAuthLenEncClientData
53+ clientCanHandleExpiredPasswords
54+ clientSessionTrack
55+ clientDeprecateEOF
4856)
4957
5058const (
@@ -78,6 +86,7 @@ const (
7886 comStmtFetch
7987)
8088
89+ // https://dev.mysql.com/doc/internals/en/com-query-response.html#packet-Protocol::ColumnType
8190const (
8291 fieldTypeDecimal byte = iota
8392 fieldTypeTiny
@@ -132,7 +141,6 @@ const (
132141)
133142
134143// http://dev.mysql.com/doc/internals/en/status-flags.html
135-
136144type statusFlag uint16
137145
138146const (
You can’t perform that action at this time.
0 commit comments