mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
24 lines
730 B
TypeScript
24 lines
730 B
TypeScript
// Loaded from https://deno.land/x/mysql/src/constant/capabilities.ts
|
|
|
|
|
|
enum ServerCapabilities {
|
|
CLIENT_PROTOCOL_41 = 0x00000200,
|
|
CLIENT_CONNECT_WITH_DB = 0x00000008,
|
|
CLIENT_LONG_FLAG = 0x00000004,
|
|
CLIENT_DEPRECATE_EOF = 0x01000000,
|
|
CLIENT_LONG_PASSWORD = 0x00000001,
|
|
CLIENT_TRANSACTIONS = 0x00002000,
|
|
CLIENT_MULTI_RESULTS = 0x00020000,
|
|
CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA = 0x00200000,
|
|
CLIENT_PLUGIN_AUTH = 0x80000,
|
|
CLIENT_SECURE_CONNECTION = 0x8000,
|
|
CLIENT_FOUND_ROWS = 0x00000002,
|
|
CLIENT_CONNECT_ATTRS = 0x00100000,
|
|
CLIENT_IGNORE_SPACE = 0x00000100,
|
|
CLIENT_IGNORE_SIGPIPE = 0x00001000,
|
|
CLIENT_RESERVED = 0x00004000,
|
|
CLIENT_PS_MULTI_RESULTS = 0x00040000,
|
|
}
|
|
|
|
export default ServerCapabilities;
|