singlestoredb 1.16.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- singlestoredb/__init__.py +75 -0
- singlestoredb/ai/__init__.py +2 -0
- singlestoredb/ai/chat.py +139 -0
- singlestoredb/ai/embeddings.py +128 -0
- singlestoredb/alchemy/__init__.py +90 -0
- singlestoredb/apps/__init__.py +3 -0
- singlestoredb/apps/_cloud_functions.py +90 -0
- singlestoredb/apps/_config.py +72 -0
- singlestoredb/apps/_connection_info.py +18 -0
- singlestoredb/apps/_dashboards.py +47 -0
- singlestoredb/apps/_process.py +32 -0
- singlestoredb/apps/_python_udfs.py +100 -0
- singlestoredb/apps/_stdout_supress.py +30 -0
- singlestoredb/apps/_uvicorn_util.py +36 -0
- singlestoredb/auth.py +245 -0
- singlestoredb/config.py +484 -0
- singlestoredb/connection.py +1487 -0
- singlestoredb/converters.py +950 -0
- singlestoredb/docstring/__init__.py +33 -0
- singlestoredb/docstring/attrdoc.py +126 -0
- singlestoredb/docstring/common.py +230 -0
- singlestoredb/docstring/epydoc.py +267 -0
- singlestoredb/docstring/google.py +412 -0
- singlestoredb/docstring/numpydoc.py +562 -0
- singlestoredb/docstring/parser.py +100 -0
- singlestoredb/docstring/py.typed +1 -0
- singlestoredb/docstring/rest.py +256 -0
- singlestoredb/docstring/tests/__init__.py +1 -0
- singlestoredb/docstring/tests/_pydoctor.py +21 -0
- singlestoredb/docstring/tests/test_epydoc.py +729 -0
- singlestoredb/docstring/tests/test_google.py +1007 -0
- singlestoredb/docstring/tests/test_numpydoc.py +1100 -0
- singlestoredb/docstring/tests/test_parse_from_object.py +109 -0
- singlestoredb/docstring/tests/test_parser.py +248 -0
- singlestoredb/docstring/tests/test_rest.py +547 -0
- singlestoredb/docstring/tests/test_util.py +70 -0
- singlestoredb/docstring/util.py +141 -0
- singlestoredb/exceptions.py +120 -0
- singlestoredb/functions/__init__.py +16 -0
- singlestoredb/functions/decorator.py +201 -0
- singlestoredb/functions/dtypes.py +1793 -0
- singlestoredb/functions/ext/__init__.py +1 -0
- singlestoredb/functions/ext/arrow.py +375 -0
- singlestoredb/functions/ext/asgi.py +2133 -0
- singlestoredb/functions/ext/json.py +420 -0
- singlestoredb/functions/ext/mmap.py +413 -0
- singlestoredb/functions/ext/rowdat_1.py +724 -0
- singlestoredb/functions/ext/timer.py +89 -0
- singlestoredb/functions/ext/utils.py +218 -0
- singlestoredb/functions/signature.py +1578 -0
- singlestoredb/functions/typing/__init__.py +41 -0
- singlestoredb/functions/typing/numpy.py +20 -0
- singlestoredb/functions/typing/pandas.py +2 -0
- singlestoredb/functions/typing/polars.py +2 -0
- singlestoredb/functions/typing/pyarrow.py +2 -0
- singlestoredb/functions/utils.py +421 -0
- singlestoredb/fusion/__init__.py +11 -0
- singlestoredb/fusion/graphql.py +213 -0
- singlestoredb/fusion/handler.py +916 -0
- singlestoredb/fusion/handlers/__init__.py +0 -0
- singlestoredb/fusion/handlers/export.py +525 -0
- singlestoredb/fusion/handlers/files.py +690 -0
- singlestoredb/fusion/handlers/job.py +660 -0
- singlestoredb/fusion/handlers/models.py +250 -0
- singlestoredb/fusion/handlers/stage.py +502 -0
- singlestoredb/fusion/handlers/utils.py +324 -0
- singlestoredb/fusion/handlers/workspace.py +956 -0
- singlestoredb/fusion/registry.py +249 -0
- singlestoredb/fusion/result.py +399 -0
- singlestoredb/http/__init__.py +27 -0
- singlestoredb/http/connection.py +1267 -0
- singlestoredb/magics/__init__.py +34 -0
- singlestoredb/magics/run_personal.py +137 -0
- singlestoredb/magics/run_shared.py +134 -0
- singlestoredb/management/__init__.py +9 -0
- singlestoredb/management/billing_usage.py +148 -0
- singlestoredb/management/cluster.py +462 -0
- singlestoredb/management/export.py +295 -0
- singlestoredb/management/files.py +1102 -0
- singlestoredb/management/inference_api.py +105 -0
- singlestoredb/management/job.py +887 -0
- singlestoredb/management/manager.py +373 -0
- singlestoredb/management/organization.py +226 -0
- singlestoredb/management/region.py +169 -0
- singlestoredb/management/utils.py +423 -0
- singlestoredb/management/workspace.py +1927 -0
- singlestoredb/mysql/__init__.py +177 -0
- singlestoredb/mysql/_auth.py +298 -0
- singlestoredb/mysql/charset.py +214 -0
- singlestoredb/mysql/connection.py +2032 -0
- singlestoredb/mysql/constants/CLIENT.py +38 -0
- singlestoredb/mysql/constants/COMMAND.py +32 -0
- singlestoredb/mysql/constants/CR.py +78 -0
- singlestoredb/mysql/constants/ER.py +474 -0
- singlestoredb/mysql/constants/EXTENDED_TYPE.py +3 -0
- singlestoredb/mysql/constants/FIELD_TYPE.py +48 -0
- singlestoredb/mysql/constants/FLAG.py +15 -0
- singlestoredb/mysql/constants/SERVER_STATUS.py +10 -0
- singlestoredb/mysql/constants/VECTOR_TYPE.py +6 -0
- singlestoredb/mysql/constants/__init__.py +0 -0
- singlestoredb/mysql/converters.py +271 -0
- singlestoredb/mysql/cursors.py +896 -0
- singlestoredb/mysql/err.py +92 -0
- singlestoredb/mysql/optionfile.py +20 -0
- singlestoredb/mysql/protocol.py +450 -0
- singlestoredb/mysql/tests/__init__.py +19 -0
- singlestoredb/mysql/tests/base.py +126 -0
- singlestoredb/mysql/tests/conftest.py +37 -0
- singlestoredb/mysql/tests/test_DictCursor.py +132 -0
- singlestoredb/mysql/tests/test_SSCursor.py +141 -0
- singlestoredb/mysql/tests/test_basic.py +452 -0
- singlestoredb/mysql/tests/test_connection.py +851 -0
- singlestoredb/mysql/tests/test_converters.py +58 -0
- singlestoredb/mysql/tests/test_cursor.py +141 -0
- singlestoredb/mysql/tests/test_err.py +16 -0
- singlestoredb/mysql/tests/test_issues.py +514 -0
- singlestoredb/mysql/tests/test_load_local.py +75 -0
- singlestoredb/mysql/tests/test_nextset.py +88 -0
- singlestoredb/mysql/tests/test_optionfile.py +27 -0
- singlestoredb/mysql/tests/thirdparty/__init__.py +6 -0
- singlestoredb/mysql/tests/thirdparty/test_MySQLdb/__init__.py +9 -0
- singlestoredb/mysql/tests/thirdparty/test_MySQLdb/capabilities.py +323 -0
- singlestoredb/mysql/tests/thirdparty/test_MySQLdb/dbapi20.py +865 -0
- singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py +110 -0
- singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py +224 -0
- singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py +101 -0
- singlestoredb/mysql/times.py +23 -0
- singlestoredb/notebook/__init__.py +16 -0
- singlestoredb/notebook/_objects.py +213 -0
- singlestoredb/notebook/_portal.py +352 -0
- singlestoredb/py.typed +0 -0
- singlestoredb/pytest.py +352 -0
- singlestoredb/server/__init__.py +0 -0
- singlestoredb/server/docker.py +452 -0
- singlestoredb/server/free_tier.py +267 -0
- singlestoredb/tests/__init__.py +0 -0
- singlestoredb/tests/alltypes.sql +307 -0
- singlestoredb/tests/alltypes_no_nulls.sql +208 -0
- singlestoredb/tests/empty.sql +0 -0
- singlestoredb/tests/ext_funcs/__init__.py +702 -0
- singlestoredb/tests/local_infile.csv +3 -0
- singlestoredb/tests/test.ipynb +18 -0
- singlestoredb/tests/test.sql +680 -0
- singlestoredb/tests/test2.ipynb +18 -0
- singlestoredb/tests/test2.sql +1 -0
- singlestoredb/tests/test_basics.py +1332 -0
- singlestoredb/tests/test_config.py +318 -0
- singlestoredb/tests/test_connection.py +3103 -0
- singlestoredb/tests/test_dbapi.py +27 -0
- singlestoredb/tests/test_exceptions.py +45 -0
- singlestoredb/tests/test_ext_func.py +1472 -0
- singlestoredb/tests/test_ext_func_data.py +1101 -0
- singlestoredb/tests/test_fusion.py +1527 -0
- singlestoredb/tests/test_http.py +288 -0
- singlestoredb/tests/test_management.py +1599 -0
- singlestoredb/tests/test_plugin.py +33 -0
- singlestoredb/tests/test_results.py +171 -0
- singlestoredb/tests/test_types.py +132 -0
- singlestoredb/tests/test_udf.py +737 -0
- singlestoredb/tests/test_udf_returns.py +459 -0
- singlestoredb/tests/test_vectorstore.py +51 -0
- singlestoredb/tests/test_xdict.py +333 -0
- singlestoredb/tests/utils.py +141 -0
- singlestoredb/types.py +373 -0
- singlestoredb/utils/__init__.py +0 -0
- singlestoredb/utils/config.py +950 -0
- singlestoredb/utils/convert_rows.py +69 -0
- singlestoredb/utils/debug.py +13 -0
- singlestoredb/utils/dtypes.py +205 -0
- singlestoredb/utils/events.py +65 -0
- singlestoredb/utils/mogrify.py +151 -0
- singlestoredb/utils/results.py +585 -0
- singlestoredb/utils/xdict.py +425 -0
- singlestoredb/vectorstore.py +192 -0
- singlestoredb/warnings.py +5 -0
- singlestoredb-1.16.1.dist-info/METADATA +165 -0
- singlestoredb-1.16.1.dist-info/RECORD +183 -0
- singlestoredb-1.16.1.dist-info/WHEEL +5 -0
- singlestoredb-1.16.1.dist-info/entry_points.txt +2 -0
- singlestoredb-1.16.1.dist-info/licenses/LICENSE +201 -0
- singlestoredb-1.16.1.dist-info/top_level.txt +3 -0
- sqlx/__init__.py +4 -0
- sqlx/magic.py +113 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# https://dev.mysql.com/doc/internals/en/capability-flags.html#packet-Protocol::CapabilityFlags
|
|
2
|
+
LONG_PASSWORD = 1
|
|
3
|
+
FOUND_ROWS = 1 << 1
|
|
4
|
+
LONG_FLAG = 1 << 2
|
|
5
|
+
CONNECT_WITH_DB = 1 << 3
|
|
6
|
+
NO_SCHEMA = 1 << 4
|
|
7
|
+
COMPRESS = 1 << 5
|
|
8
|
+
ODBC = 1 << 6
|
|
9
|
+
LOCAL_FILES = 1 << 7
|
|
10
|
+
IGNORE_SPACE = 1 << 8
|
|
11
|
+
PROTOCOL_41 = 1 << 9
|
|
12
|
+
INTERACTIVE = 1 << 10
|
|
13
|
+
SSL = 1 << 11
|
|
14
|
+
IGNORE_SIGPIPE = 1 << 12
|
|
15
|
+
TRANSACTIONS = 1 << 13
|
|
16
|
+
SECURE_CONNECTION = 1 << 15
|
|
17
|
+
MULTI_STATEMENTS = 1 << 16
|
|
18
|
+
MULTI_RESULTS = 1 << 17
|
|
19
|
+
PS_MULTI_RESULTS = 1 << 18
|
|
20
|
+
PLUGIN_AUTH = 1 << 19
|
|
21
|
+
CONNECT_ATTRS = 1 << 20
|
|
22
|
+
PLUGIN_AUTH_LENENC_CLIENT_DATA = 1 << 21
|
|
23
|
+
CAPABILITIES = (
|
|
24
|
+
LONG_PASSWORD
|
|
25
|
+
| LONG_FLAG
|
|
26
|
+
| PROTOCOL_41
|
|
27
|
+
| TRANSACTIONS
|
|
28
|
+
| SECURE_CONNECTION
|
|
29
|
+
| MULTI_RESULTS
|
|
30
|
+
| PLUGIN_AUTH
|
|
31
|
+
| PLUGIN_AUTH_LENENC_CLIENT_DATA
|
|
32
|
+
| CONNECT_ATTRS
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
# Not done yet
|
|
36
|
+
HANDLE_EXPIRED_PASSWORDS = 1 << 22
|
|
37
|
+
SESSION_TRACK = 1 << 23
|
|
38
|
+
DEPRECATE_EOF = 1 << 24
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
COM_SLEEP = 0x00
|
|
2
|
+
COM_QUIT = 0x01
|
|
3
|
+
COM_INIT_DB = 0x02
|
|
4
|
+
COM_QUERY = 0x03
|
|
5
|
+
COM_FIELD_LIST = 0x04
|
|
6
|
+
COM_CREATE_DB = 0x05
|
|
7
|
+
COM_DROP_DB = 0x06
|
|
8
|
+
COM_REFRESH = 0x07
|
|
9
|
+
COM_SHUTDOWN = 0x08
|
|
10
|
+
COM_STATISTICS = 0x09
|
|
11
|
+
COM_PROCESS_INFO = 0x0A
|
|
12
|
+
COM_CONNECT = 0x0B
|
|
13
|
+
COM_PROCESS_KILL = 0x0C
|
|
14
|
+
COM_DEBUG = 0x0D
|
|
15
|
+
COM_PING = 0x0E
|
|
16
|
+
COM_TIME = 0x0F
|
|
17
|
+
COM_DELAYED_INSERT = 0x10
|
|
18
|
+
COM_CHANGE_USER = 0x11
|
|
19
|
+
COM_BINLOG_DUMP = 0x12
|
|
20
|
+
COM_TABLE_DUMP = 0x13
|
|
21
|
+
COM_CONNECT_OUT = 0x14
|
|
22
|
+
COM_REGISTER_SLAVE = 0x15
|
|
23
|
+
COM_STMT_PREPARE = 0x16
|
|
24
|
+
COM_STMT_EXECUTE = 0x17
|
|
25
|
+
COM_STMT_SEND_LONG_DATA = 0x18
|
|
26
|
+
COM_STMT_CLOSE = 0x19
|
|
27
|
+
COM_STMT_RESET = 0x1A
|
|
28
|
+
COM_SET_OPTION = 0x1B
|
|
29
|
+
COM_STMT_FETCH = 0x1C
|
|
30
|
+
COM_DAEMON = 0x1D
|
|
31
|
+
COM_BINLOG_DUMP_GTID = 0x1E
|
|
32
|
+
COM_END = 0x1F
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# errmsg.h
|
|
2
|
+
CR_ERROR_FIRST = 2000
|
|
3
|
+
CR_UNKNOWN_ERROR = 2000
|
|
4
|
+
CR_SOCKET_CREATE_ERROR = 2001
|
|
5
|
+
CR_CONNECTION_ERROR = 2002
|
|
6
|
+
CR_CONN_HOST_ERROR = 2003
|
|
7
|
+
CR_IPSOCK_ERROR = 2004
|
|
8
|
+
CR_UNKNOWN_HOST = 2005
|
|
9
|
+
CR_SERVER_GONE_ERROR = 2006
|
|
10
|
+
CR_VERSION_ERROR = 2007
|
|
11
|
+
CR_OUT_OF_MEMORY = 2008
|
|
12
|
+
CR_WRONG_HOST_INFO = 2009
|
|
13
|
+
CR_LOCALHOST_CONNECTION = 2010
|
|
14
|
+
CR_TCP_CONNECTION = 2011
|
|
15
|
+
CR_SERVER_HANDSHAKE_ERR = 2012
|
|
16
|
+
CR_SERVER_LOST = 2013
|
|
17
|
+
CR_COMMANDS_OUT_OF_SYNC = 2014
|
|
18
|
+
CR_NAMEDPIPE_CONNECTION = 2015
|
|
19
|
+
CR_NAMEDPIPEWAIT_ERROR = 2016
|
|
20
|
+
CR_NAMEDPIPEOPEN_ERROR = 2017
|
|
21
|
+
CR_NAMEDPIPESETSTATE_ERROR = 2018
|
|
22
|
+
CR_CANT_READ_CHARSET = 2019
|
|
23
|
+
CR_NET_PACKET_TOO_LARGE = 2020
|
|
24
|
+
CR_EMBEDDED_CONNECTION = 2021
|
|
25
|
+
CR_PROBE_SLAVE_STATUS = 2022
|
|
26
|
+
CR_PROBE_SLAVE_HOSTS = 2023
|
|
27
|
+
CR_PROBE_SLAVE_CONNECT = 2024
|
|
28
|
+
CR_PROBE_MASTER_CONNECT = 2025
|
|
29
|
+
CR_SSL_CONNECTION_ERROR = 2026
|
|
30
|
+
CR_MALFORMED_PACKET = 2027
|
|
31
|
+
CR_WRONG_LICENSE = 2028
|
|
32
|
+
|
|
33
|
+
CR_NULL_POINTER = 2029
|
|
34
|
+
CR_NO_PREPARE_STMT = 2030
|
|
35
|
+
CR_PARAMS_NOT_BOUND = 2031
|
|
36
|
+
CR_DATA_TRUNCATED = 2032
|
|
37
|
+
CR_NO_PARAMETERS_EXISTS = 2033
|
|
38
|
+
CR_INVALID_PARAMETER_NO = 2034
|
|
39
|
+
CR_INVALID_BUFFER_USE = 2035
|
|
40
|
+
CR_UNSUPPORTED_PARAM_TYPE = 2036
|
|
41
|
+
|
|
42
|
+
CR_SHARED_MEMORY_CONNECTION = 2037
|
|
43
|
+
CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR = 2038
|
|
44
|
+
CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR = 2039
|
|
45
|
+
CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR = 2040
|
|
46
|
+
CR_SHARED_MEMORY_CONNECT_MAP_ERROR = 2041
|
|
47
|
+
CR_SHARED_MEMORY_FILE_MAP_ERROR = 2042
|
|
48
|
+
CR_SHARED_MEMORY_MAP_ERROR = 2043
|
|
49
|
+
CR_SHARED_MEMORY_EVENT_ERROR = 2044
|
|
50
|
+
CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR = 2045
|
|
51
|
+
CR_SHARED_MEMORY_CONNECT_SET_ERROR = 2046
|
|
52
|
+
CR_CONN_UNKNOW_PROTOCOL = 2047
|
|
53
|
+
CR_INVALID_CONN_HANDLE = 2048
|
|
54
|
+
CR_SECURE_AUTH = 2049
|
|
55
|
+
CR_FETCH_CANCELED = 2050
|
|
56
|
+
CR_NO_DATA = 2051
|
|
57
|
+
CR_NO_STMT_METADATA = 2052
|
|
58
|
+
CR_NO_RESULT_SET = 2053
|
|
59
|
+
CR_NOT_IMPLEMENTED = 2054
|
|
60
|
+
CR_SERVER_LOST_EXTENDED = 2055
|
|
61
|
+
CR_STMT_CLOSED = 2056
|
|
62
|
+
CR_NEW_STMT_METADATA = 2057
|
|
63
|
+
CR_ALREADY_CONNECTED = 2058
|
|
64
|
+
CR_AUTH_PLUGIN_CANNOT_LOAD = 2059
|
|
65
|
+
CR_DUPLICATE_CONNECTION_ATTR = 2060
|
|
66
|
+
CR_AUTH_PLUGIN_ERR = 2061
|
|
67
|
+
CR_INSECURE_API_ERR = 2062
|
|
68
|
+
CR_FILE_NAME_TOO_LONG = 2063
|
|
69
|
+
CR_SSL_FIPS_MODE_ERR = 2064
|
|
70
|
+
CR_DEPRECATED_COMPRESSION_NOT_SUPPORTED = 2065
|
|
71
|
+
CR_COMPRESSION_WRONGLY_CONFIGURED = 2066
|
|
72
|
+
CR_KERBEROS_USER_NOT_FOUND = 2067
|
|
73
|
+
CR_LOAD_DATA_LOCAL_INFILE_REJECTED = 2068
|
|
74
|
+
CR_LOAD_DATA_LOCAL_INFILE_REALPATH_FAIL = 2069
|
|
75
|
+
CR_DNS_SRV_LOOKUP_FAILED = 2070
|
|
76
|
+
CR_MANDATORY_TRACKER_NOT_FOUND = 2071
|
|
77
|
+
CR_INVALID_FACTOR_NO = 2072
|
|
78
|
+
CR_ERROR_LAST = 2072
|
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
ERROR_FIRST = 1000
|
|
2
|
+
HASHCHK = 1000
|
|
3
|
+
NISAMCHK = 1001
|
|
4
|
+
NO = 1002
|
|
5
|
+
YES = 1003
|
|
6
|
+
CANT_CREATE_FILE = 1004
|
|
7
|
+
CANT_CREATE_TABLE = 1005
|
|
8
|
+
CANT_CREATE_DB = 1006
|
|
9
|
+
DB_CREATE_EXISTS = 1007
|
|
10
|
+
DB_DROP_EXISTS = 1008
|
|
11
|
+
DB_DROP_DELETE = 1009
|
|
12
|
+
DB_DROP_RMDIR = 1010
|
|
13
|
+
CANT_DELETE_FILE = 1011
|
|
14
|
+
CANT_FIND_SYSTEM_REC = 1012
|
|
15
|
+
CANT_GET_STAT = 1013
|
|
16
|
+
CANT_GET_WD = 1014
|
|
17
|
+
CANT_LOCK = 1015
|
|
18
|
+
CANT_OPEN_FILE = 1016
|
|
19
|
+
FILE_NOT_FOUND = 1017
|
|
20
|
+
CANT_READ_DIR = 1018
|
|
21
|
+
CANT_SET_WD = 1019
|
|
22
|
+
CHECKREAD = 1020
|
|
23
|
+
DISK_FULL = 1021
|
|
24
|
+
DUP_KEY = 1022
|
|
25
|
+
ERROR_ON_CLOSE = 1023
|
|
26
|
+
ERROR_ON_READ = 1024
|
|
27
|
+
ERROR_ON_RENAME = 1025
|
|
28
|
+
ERROR_ON_WRITE = 1026
|
|
29
|
+
FILE_USED = 1027
|
|
30
|
+
FILSORT_ABORT = 1028
|
|
31
|
+
FORM_NOT_FOUND = 1029
|
|
32
|
+
GET_ERRNO = 1030
|
|
33
|
+
ILLEGAL_HA = 1031
|
|
34
|
+
KEY_NOT_FOUND = 1032
|
|
35
|
+
NOT_FORM_FILE = 1033
|
|
36
|
+
NOT_KEYFILE = 1034
|
|
37
|
+
OLD_KEYFILE = 1035
|
|
38
|
+
OPEN_AS_READONLY = 1036
|
|
39
|
+
OUTOFMEMORY = 1037
|
|
40
|
+
OUT_OF_SORTMEMORY = 1038
|
|
41
|
+
UNEXPECTED_EOF = 1039
|
|
42
|
+
CON_COUNT_ERROR = 1040
|
|
43
|
+
OUT_OF_RESOURCES = 1041
|
|
44
|
+
BAD_HOST_ERROR = 1042
|
|
45
|
+
HANDSHAKE_ERROR = 1043
|
|
46
|
+
DBACCESS_DENIED_ERROR = 1044
|
|
47
|
+
ACCESS_DENIED_ERROR = 1045
|
|
48
|
+
NO_DB_ERROR = 1046
|
|
49
|
+
UNKNOWN_COM_ERROR = 1047
|
|
50
|
+
BAD_NULL_ERROR = 1048
|
|
51
|
+
BAD_DB_ERROR = 1049
|
|
52
|
+
TABLE_EXISTS_ERROR = 1050
|
|
53
|
+
BAD_TABLE_ERROR = 1051
|
|
54
|
+
NON_UNIQ_ERROR = 1052
|
|
55
|
+
SERVER_SHUTDOWN = 1053
|
|
56
|
+
BAD_FIELD_ERROR = 1054
|
|
57
|
+
WRONG_FIELD_WITH_GROUP = 1055
|
|
58
|
+
WRONG_GROUP_FIELD = 1056
|
|
59
|
+
WRONG_SUM_SELECT = 1057
|
|
60
|
+
WRONG_VALUE_COUNT = 1058
|
|
61
|
+
TOO_LONG_IDENT = 1059
|
|
62
|
+
DUP_FIELDNAME = 1060
|
|
63
|
+
DUP_KEYNAME = 1061
|
|
64
|
+
DUP_ENTRY = 1062
|
|
65
|
+
WRONG_FIELD_SPEC = 1063
|
|
66
|
+
PARSE_ERROR = 1064
|
|
67
|
+
EMPTY_QUERY = 1065
|
|
68
|
+
NONUNIQ_TABLE = 1066
|
|
69
|
+
INVALID_DEFAULT = 1067
|
|
70
|
+
MULTIPLE_PRI_KEY = 1068
|
|
71
|
+
TOO_MANY_KEYS = 1069
|
|
72
|
+
TOO_MANY_KEY_PARTS = 1070
|
|
73
|
+
TOO_LONG_KEY = 1071
|
|
74
|
+
KEY_COLUMN_DOES_NOT_EXITS = 1072
|
|
75
|
+
BLOB_USED_AS_KEY = 1073
|
|
76
|
+
TOO_BIG_FIELDLENGTH = 1074
|
|
77
|
+
WRONG_AUTO_KEY = 1075
|
|
78
|
+
READY = 1076
|
|
79
|
+
NORMAL_SHUTDOWN = 1077
|
|
80
|
+
GOT_SIGNAL = 1078
|
|
81
|
+
SHUTDOWN_COMPLETE = 1079
|
|
82
|
+
FORCING_CLOSE = 1080
|
|
83
|
+
IPSOCK_ERROR = 1081
|
|
84
|
+
NO_SUCH_INDEX = 1082
|
|
85
|
+
WRONG_FIELD_TERMINATORS = 1083
|
|
86
|
+
BLOBS_AND_NO_TERMINATED = 1084
|
|
87
|
+
TEXTFILE_NOT_READABLE = 1085
|
|
88
|
+
FILE_EXISTS_ERROR = 1086
|
|
89
|
+
LOAD_INFO = 1087
|
|
90
|
+
ALTER_INFO = 1088
|
|
91
|
+
WRONG_SUB_KEY = 1089
|
|
92
|
+
CANT_REMOVE_ALL_FIELDS = 1090
|
|
93
|
+
CANT_DROP_FIELD_OR_KEY = 1091
|
|
94
|
+
INSERT_INFO = 1092
|
|
95
|
+
UPDATE_TABLE_USED = 1093
|
|
96
|
+
NO_SUCH_THREAD = 1094
|
|
97
|
+
KILL_DENIED_ERROR = 1095
|
|
98
|
+
NO_TABLES_USED = 1096
|
|
99
|
+
TOO_BIG_SET = 1097
|
|
100
|
+
NO_UNIQUE_LOGFILE = 1098
|
|
101
|
+
TABLE_NOT_LOCKED_FOR_WRITE = 1099
|
|
102
|
+
TABLE_NOT_LOCKED = 1100
|
|
103
|
+
BLOB_CANT_HAVE_DEFAULT = 1101
|
|
104
|
+
WRONG_DB_NAME = 1102
|
|
105
|
+
WRONG_TABLE_NAME = 1103
|
|
106
|
+
TOO_BIG_SELECT = 1104
|
|
107
|
+
UNKNOWN_ERROR = 1105
|
|
108
|
+
UNKNOWN_PROCEDURE = 1106
|
|
109
|
+
WRONG_PARAMCOUNT_TO_PROCEDURE = 1107
|
|
110
|
+
WRONG_PARAMETERS_TO_PROCEDURE = 1108
|
|
111
|
+
UNKNOWN_TABLE = 1109
|
|
112
|
+
FIELD_SPECIFIED_TWICE = 1110
|
|
113
|
+
INVALID_GROUP_FUNC_USE = 1111
|
|
114
|
+
UNSUPPORTED_EXTENSION = 1112
|
|
115
|
+
TABLE_MUST_HAVE_COLUMNS = 1113
|
|
116
|
+
RECORD_FILE_FULL = 1114
|
|
117
|
+
UNKNOWN_CHARACTER_SET = 1115
|
|
118
|
+
TOO_MANY_TABLES = 1116
|
|
119
|
+
TOO_MANY_FIELDS = 1117
|
|
120
|
+
TOO_BIG_ROWSIZE = 1118
|
|
121
|
+
STACK_OVERRUN = 1119
|
|
122
|
+
WRONG_OUTER_JOIN = 1120
|
|
123
|
+
NULL_COLUMN_IN_INDEX = 1121
|
|
124
|
+
CANT_FIND_UDF = 1122
|
|
125
|
+
CANT_INITIALIZE_UDF = 1123
|
|
126
|
+
UDF_NO_PATHS = 1124
|
|
127
|
+
UDF_EXISTS = 1125
|
|
128
|
+
CANT_OPEN_LIBRARY = 1126
|
|
129
|
+
CANT_FIND_DL_ENTRY = 1127
|
|
130
|
+
FUNCTION_NOT_DEFINED = 1128
|
|
131
|
+
HOST_IS_BLOCKED = 1129
|
|
132
|
+
HOST_NOT_PRIVILEGED = 1130
|
|
133
|
+
PASSWORD_ANONYMOUS_USER = 1131
|
|
134
|
+
PASSWORD_NOT_ALLOWED = 1132
|
|
135
|
+
PASSWORD_NO_MATCH = 1133
|
|
136
|
+
UPDATE_INFO = 1134
|
|
137
|
+
CANT_CREATE_THREAD = 1135
|
|
138
|
+
WRONG_VALUE_COUNT_ON_ROW = 1136
|
|
139
|
+
CANT_REOPEN_TABLE = 1137
|
|
140
|
+
INVALID_USE_OF_NULL = 1138
|
|
141
|
+
REGEXP_ERROR = 1139
|
|
142
|
+
MIX_OF_GROUP_FUNC_AND_FIELDS = 1140
|
|
143
|
+
NONEXISTING_GRANT = 1141
|
|
144
|
+
TABLEACCESS_DENIED_ERROR = 1142
|
|
145
|
+
COLUMNACCESS_DENIED_ERROR = 1143
|
|
146
|
+
ILLEGAL_GRANT_FOR_TABLE = 1144
|
|
147
|
+
GRANT_WRONG_HOST_OR_USER = 1145
|
|
148
|
+
NO_SUCH_TABLE = 1146
|
|
149
|
+
NONEXISTING_TABLE_GRANT = 1147
|
|
150
|
+
NOT_ALLOWED_COMMAND = 1148
|
|
151
|
+
SYNTAX_ERROR = 1149
|
|
152
|
+
DELAYED_CANT_CHANGE_LOCK = 1150
|
|
153
|
+
TOO_MANY_DELAYED_THREADS = 1151
|
|
154
|
+
ABORTING_CONNECTION = 1152
|
|
155
|
+
NET_PACKET_TOO_LARGE = 1153
|
|
156
|
+
NET_READ_ERROR_FROM_PIPE = 1154
|
|
157
|
+
NET_FCNTL_ERROR = 1155
|
|
158
|
+
NET_PACKETS_OUT_OF_ORDER = 1156
|
|
159
|
+
NET_UNCOMPRESS_ERROR = 1157
|
|
160
|
+
NET_READ_ERROR = 1158
|
|
161
|
+
NET_READ_INTERRUPTED = 1159
|
|
162
|
+
NET_ERROR_ON_WRITE = 1160
|
|
163
|
+
NET_WRITE_INTERRUPTED = 1161
|
|
164
|
+
TOO_LONG_STRING = 1162
|
|
165
|
+
TABLE_CANT_HANDLE_BLOB = 1163
|
|
166
|
+
TABLE_CANT_HANDLE_AUTO_INCREMENT = 1164
|
|
167
|
+
DELAYED_INSERT_TABLE_LOCKED = 1165
|
|
168
|
+
WRONG_COLUMN_NAME = 1166
|
|
169
|
+
WRONG_KEY_COLUMN = 1167
|
|
170
|
+
WRONG_MRG_TABLE = 1168
|
|
171
|
+
DUP_UNIQUE = 1169
|
|
172
|
+
BLOB_KEY_WITHOUT_LENGTH = 1170
|
|
173
|
+
PRIMARY_CANT_HAVE_NULL = 1171
|
|
174
|
+
TOO_MANY_ROWS = 1172
|
|
175
|
+
REQUIRES_PRIMARY_KEY = 1173
|
|
176
|
+
NO_RAID_COMPILED = 1174
|
|
177
|
+
UPDATE_WITHOUT_KEY_IN_SAFE_MODE = 1175
|
|
178
|
+
KEY_DOES_NOT_EXITS = 1176
|
|
179
|
+
CHECK_NO_SUCH_TABLE = 1177
|
|
180
|
+
CHECK_NOT_IMPLEMENTED = 1178
|
|
181
|
+
CANT_DO_THIS_DURING_AN_TRANSACTION = 1179
|
|
182
|
+
ERROR_DURING_COMMIT = 1180
|
|
183
|
+
ERROR_DURING_ROLLBACK = 1181
|
|
184
|
+
ERROR_DURING_FLUSH_LOGS = 1182
|
|
185
|
+
ERROR_DURING_CHECKPOINT = 1183
|
|
186
|
+
NEW_ABORTING_CONNECTION = 1184
|
|
187
|
+
DUMP_NOT_IMPLEMENTED = 1185
|
|
188
|
+
FLUSH_MASTER_BINLOG_CLOSED = 1186
|
|
189
|
+
INDEX_REBUILD = 1187
|
|
190
|
+
MASTER = 1188
|
|
191
|
+
MASTER_NET_READ = 1189
|
|
192
|
+
MASTER_NET_WRITE = 1190
|
|
193
|
+
FT_MATCHING_KEY_NOT_FOUND = 1191
|
|
194
|
+
LOCK_OR_ACTIVE_TRANSACTION = 1192
|
|
195
|
+
UNKNOWN_SYSTEM_VARIABLE = 1193
|
|
196
|
+
CRASHED_ON_USAGE = 1194
|
|
197
|
+
CRASHED_ON_REPAIR = 1195
|
|
198
|
+
WARNING_NOT_COMPLETE_ROLLBACK = 1196
|
|
199
|
+
TRANS_CACHE_FULL = 1197
|
|
200
|
+
SLAVE_MUST_STOP = 1198
|
|
201
|
+
SLAVE_NOT_RUNNING = 1199
|
|
202
|
+
BAD_SLAVE = 1200
|
|
203
|
+
MASTER_INFO = 1201
|
|
204
|
+
SLAVE_THREAD = 1202
|
|
205
|
+
TOO_MANY_USER_CONNECTIONS = 1203
|
|
206
|
+
SET_CONSTANTS_ONLY = 1204
|
|
207
|
+
LOCK_WAIT_TIMEOUT = 1205
|
|
208
|
+
LOCK_TABLE_FULL = 1206
|
|
209
|
+
READ_ONLY_TRANSACTION = 1207
|
|
210
|
+
DROP_DB_WITH_READ_LOCK = 1208
|
|
211
|
+
CREATE_DB_WITH_READ_LOCK = 1209
|
|
212
|
+
WRONG_ARGUMENTS = 1210
|
|
213
|
+
NO_PERMISSION_TO_CREATE_USER = 1211
|
|
214
|
+
UNION_TABLES_IN_DIFFERENT_DIR = 1212
|
|
215
|
+
LOCK_DEADLOCK = 1213
|
|
216
|
+
TABLE_CANT_HANDLE_FT = 1214
|
|
217
|
+
CANNOT_ADD_FOREIGN = 1215
|
|
218
|
+
NO_REFERENCED_ROW = 1216
|
|
219
|
+
ROW_IS_REFERENCED = 1217
|
|
220
|
+
CONNECT_TO_MASTER = 1218
|
|
221
|
+
QUERY_ON_MASTER = 1219
|
|
222
|
+
ERROR_WHEN_EXECUTING_COMMAND = 1220
|
|
223
|
+
WRONG_USAGE = 1221
|
|
224
|
+
WRONG_NUMBER_OF_COLUMNS_IN_SELECT = 1222
|
|
225
|
+
CANT_UPDATE_WITH_READLOCK = 1223
|
|
226
|
+
MIXING_NOT_ALLOWED = 1224
|
|
227
|
+
DUP_ARGUMENT = 1225
|
|
228
|
+
USER_LIMIT_REACHED = 1226
|
|
229
|
+
SPECIFIC_ACCESS_DENIED_ERROR = 1227
|
|
230
|
+
LOCAL_VARIABLE = 1228
|
|
231
|
+
GLOBAL_VARIABLE = 1229
|
|
232
|
+
NO_DEFAULT = 1230
|
|
233
|
+
WRONG_VALUE_FOR_VAR = 1231
|
|
234
|
+
WRONG_TYPE_FOR_VAR = 1232
|
|
235
|
+
VAR_CANT_BE_READ = 1233
|
|
236
|
+
CANT_USE_OPTION_HERE = 1234
|
|
237
|
+
NOT_SUPPORTED_YET = 1235
|
|
238
|
+
MASTER_FATAL_ERROR_READING_BINLOG = 1236
|
|
239
|
+
SLAVE_IGNORED_TABLE = 1237
|
|
240
|
+
INCORRECT_GLOBAL_LOCAL_VAR = 1238
|
|
241
|
+
WRONG_FK_DEF = 1239
|
|
242
|
+
KEY_REF_DO_NOT_MATCH_TABLE_REF = 1240
|
|
243
|
+
OPERAND_COLUMNS = 1241
|
|
244
|
+
SUBQUERY_NO_1_ROW = 1242
|
|
245
|
+
UNKNOWN_STMT_HANDLER = 1243
|
|
246
|
+
CORRUPT_HELP_DB = 1244
|
|
247
|
+
CYCLIC_REFERENCE = 1245
|
|
248
|
+
AUTO_CONVERT = 1246
|
|
249
|
+
ILLEGAL_REFERENCE = 1247
|
|
250
|
+
DERIVED_MUST_HAVE_ALIAS = 1248
|
|
251
|
+
SELECT_REDUCED = 1249
|
|
252
|
+
TABLENAME_NOT_ALLOWED_HERE = 1250
|
|
253
|
+
NOT_SUPPORTED_AUTH_MODE = 1251
|
|
254
|
+
SPATIAL_CANT_HAVE_NULL = 1252
|
|
255
|
+
COLLATION_CHARSET_MISMATCH = 1253
|
|
256
|
+
SLAVE_WAS_RUNNING = 1254
|
|
257
|
+
SLAVE_WAS_NOT_RUNNING = 1255
|
|
258
|
+
TOO_BIG_FOR_UNCOMPRESS = 1256
|
|
259
|
+
ZLIB_Z_MEM_ERROR = 1257
|
|
260
|
+
ZLIB_Z_BUF_ERROR = 1258
|
|
261
|
+
ZLIB_Z_DATA_ERROR = 1259
|
|
262
|
+
CUT_VALUE_GROUP_CONCAT = 1260
|
|
263
|
+
WARN_TOO_FEW_RECORDS = 1261
|
|
264
|
+
WARN_TOO_MANY_RECORDS = 1262
|
|
265
|
+
WARN_NULL_TO_NOTNULL = 1263
|
|
266
|
+
WARN_DATA_OUT_OF_RANGE = 1264
|
|
267
|
+
WARN_DATA_TRUNCATED = 1265
|
|
268
|
+
WARN_USING_OTHER_HANDLER = 1266
|
|
269
|
+
CANT_AGGREGATE_2COLLATIONS = 1267
|
|
270
|
+
DROP_USER = 1268
|
|
271
|
+
REVOKE_GRANTS = 1269
|
|
272
|
+
CANT_AGGREGATE_3COLLATIONS = 1270
|
|
273
|
+
CANT_AGGREGATE_NCOLLATIONS = 1271
|
|
274
|
+
VARIABLE_IS_NOT_STRUCT = 1272
|
|
275
|
+
UNKNOWN_COLLATION = 1273
|
|
276
|
+
SLAVE_IGNORED_SSL_PARAMS = 1274
|
|
277
|
+
SERVER_IS_IN_SECURE_AUTH_MODE = 1275
|
|
278
|
+
WARN_FIELD_RESOLVED = 1276
|
|
279
|
+
BAD_SLAVE_UNTIL_COND = 1277
|
|
280
|
+
MISSING_SKIP_SLAVE = 1278
|
|
281
|
+
UNTIL_COND_IGNORED = 1279
|
|
282
|
+
WRONG_NAME_FOR_INDEX = 1280
|
|
283
|
+
WRONG_NAME_FOR_CATALOG = 1281
|
|
284
|
+
WARN_QC_RESIZE = 1282
|
|
285
|
+
BAD_FT_COLUMN = 1283
|
|
286
|
+
UNKNOWN_KEY_CACHE = 1284
|
|
287
|
+
WARN_HOSTNAME_WONT_WORK = 1285
|
|
288
|
+
UNKNOWN_STORAGE_ENGINE = 1286
|
|
289
|
+
WARN_DEPRECATED_SYNTAX = 1287
|
|
290
|
+
NON_UPDATABLE_TABLE = 1288
|
|
291
|
+
FEATURE_DISABLED = 1289
|
|
292
|
+
OPTION_PREVENTS_STATEMENT = 1290
|
|
293
|
+
DUPLICATED_VALUE_IN_TYPE = 1291
|
|
294
|
+
TRUNCATED_WRONG_VALUE = 1292
|
|
295
|
+
TOO_MUCH_AUTO_TIMESTAMP_COLS = 1293
|
|
296
|
+
INVALID_ON_UPDATE = 1294
|
|
297
|
+
UNSUPPORTED_PS = 1295
|
|
298
|
+
GET_ERRMSG = 1296
|
|
299
|
+
GET_TEMPORARY_ERRMSG = 1297
|
|
300
|
+
UNKNOWN_TIME_ZONE = 1298
|
|
301
|
+
WARN_INVALID_TIMESTAMP = 1299
|
|
302
|
+
INVALID_CHARACTER_STRING = 1300
|
|
303
|
+
WARN_ALLOWED_PACKET_OVERFLOWED = 1301
|
|
304
|
+
CONFLICTING_DECLARATIONS = 1302
|
|
305
|
+
SP_NO_RECURSIVE_CREATE = 1303
|
|
306
|
+
SP_ALREADY_EXISTS = 1304
|
|
307
|
+
SP_DOES_NOT_EXIST = 1305
|
|
308
|
+
SP_DROP_FAILED = 1306
|
|
309
|
+
SP_STORE_FAILED = 1307
|
|
310
|
+
SP_LILABEL_MISMATCH = 1308
|
|
311
|
+
SP_LABEL_REDEFINE = 1309
|
|
312
|
+
SP_LABEL_MISMATCH = 1310
|
|
313
|
+
SP_UNINIT_VAR = 1311
|
|
314
|
+
SP_BADSELECT = 1312
|
|
315
|
+
SP_BADRETURN = 1313
|
|
316
|
+
SP_BADSTATEMENT = 1314
|
|
317
|
+
UPDATE_LOG_DEPRECATED_IGNORED = 1315
|
|
318
|
+
UPDATE_LOG_DEPRECATED_TRANSLATED = 1316
|
|
319
|
+
QUERY_INTERRUPTED = 1317
|
|
320
|
+
SP_WRONG_NO_OF_ARGS = 1318
|
|
321
|
+
SP_COND_MISMATCH = 1319
|
|
322
|
+
SP_NORETURN = 1320
|
|
323
|
+
SP_NORETURNEND = 1321
|
|
324
|
+
SP_BAD_CURSOR_QUERY = 1322
|
|
325
|
+
SP_BAD_CURSOR_SELECT = 1323
|
|
326
|
+
SP_CURSOR_MISMATCH = 1324
|
|
327
|
+
SP_CURSOR_ALREADY_OPEN = 1325
|
|
328
|
+
SP_CURSOR_NOT_OPEN = 1326
|
|
329
|
+
SP_UNDECLARED_VAR = 1327
|
|
330
|
+
SP_WRONG_NO_OF_FETCH_ARGS = 1328
|
|
331
|
+
SP_FETCH_NO_DATA = 1329
|
|
332
|
+
SP_DUP_PARAM = 1330
|
|
333
|
+
SP_DUP_VAR = 1331
|
|
334
|
+
SP_DUP_COND = 1332
|
|
335
|
+
SP_DUP_CURS = 1333
|
|
336
|
+
SP_CANT_ALTER = 1334
|
|
337
|
+
SP_SUBSELECT_NYI = 1335
|
|
338
|
+
STMT_NOT_ALLOWED_IN_SF_OR_TRG = 1336
|
|
339
|
+
SP_VARCOND_AFTER_CURSHNDLR = 1337
|
|
340
|
+
SP_CURSOR_AFTER_HANDLER = 1338
|
|
341
|
+
SP_CASE_NOT_FOUND = 1339
|
|
342
|
+
FPARSER_TOO_BIG_FILE = 1340
|
|
343
|
+
FPARSER_BAD_HEADER = 1341
|
|
344
|
+
FPARSER_EOF_IN_COMMENT = 1342
|
|
345
|
+
FPARSER_ERROR_IN_PARAMETER = 1343
|
|
346
|
+
FPARSER_EOF_IN_UNKNOWN_PARAMETER = 1344
|
|
347
|
+
VIEW_NO_EXPLAIN = 1345
|
|
348
|
+
FRM_UNKNOWN_TYPE = 1346
|
|
349
|
+
WRONG_OBJECT = 1347
|
|
350
|
+
NONUPDATEABLE_COLUMN = 1348
|
|
351
|
+
VIEW_SELECT_DERIVED = 1349
|
|
352
|
+
VIEW_SELECT_CLAUSE = 1350
|
|
353
|
+
VIEW_SELECT_VARIABLE = 1351
|
|
354
|
+
VIEW_SELECT_TMPTABLE = 1352
|
|
355
|
+
VIEW_WRONG_LIST = 1353
|
|
356
|
+
WARN_VIEW_MERGE = 1354
|
|
357
|
+
WARN_VIEW_WITHOUT_KEY = 1355
|
|
358
|
+
VIEW_INVALID = 1356
|
|
359
|
+
SP_NO_DROP_SP = 1357
|
|
360
|
+
SP_GOTO_IN_HNDLR = 1358
|
|
361
|
+
TRG_ALREADY_EXISTS = 1359
|
|
362
|
+
TRG_DOES_NOT_EXIST = 1360
|
|
363
|
+
TRG_ON_VIEW_OR_TEMP_TABLE = 1361
|
|
364
|
+
TRG_CANT_CHANGE_ROW = 1362
|
|
365
|
+
TRG_NO_SUCH_ROW_IN_TRG = 1363
|
|
366
|
+
NO_DEFAULT_FOR_FIELD = 1364
|
|
367
|
+
DIVISION_BY_ZERO = 1365
|
|
368
|
+
TRUNCATED_WRONG_VALUE_FOR_FIELD = 1366
|
|
369
|
+
ILLEGAL_VALUE_FOR_TYPE = 1367
|
|
370
|
+
VIEW_NONUPD_CHECK = 1368
|
|
371
|
+
VIEW_CHECK_FAILED = 1369
|
|
372
|
+
PROCACCESS_DENIED_ERROR = 1370
|
|
373
|
+
RELAY_LOG_FAIL = 1371
|
|
374
|
+
PASSWD_LENGTH = 1372
|
|
375
|
+
UNKNOWN_TARGET_BINLOG = 1373
|
|
376
|
+
IO_ERR_LOG_INDEX_READ = 1374
|
|
377
|
+
BINLOG_PURGE_PROHIBITED = 1375
|
|
378
|
+
FSEEK_FAIL = 1376
|
|
379
|
+
BINLOG_PURGE_FATAL_ERR = 1377
|
|
380
|
+
LOG_IN_USE = 1378
|
|
381
|
+
LOG_PURGE_UNKNOWN_ERR = 1379
|
|
382
|
+
RELAY_LOG_INIT = 1380
|
|
383
|
+
NO_BINARY_LOGGING = 1381
|
|
384
|
+
RESERVED_SYNTAX = 1382
|
|
385
|
+
WSAS_FAILED = 1383
|
|
386
|
+
DIFF_GROUPS_PROC = 1384
|
|
387
|
+
NO_GROUP_FOR_PROC = 1385
|
|
388
|
+
ORDER_WITH_PROC = 1386
|
|
389
|
+
LOGGING_PROHIBIT_CHANGING_OF = 1387
|
|
390
|
+
NO_FILE_MAPPING = 1388
|
|
391
|
+
WRONG_MAGIC = 1389
|
|
392
|
+
PS_MANY_PARAM = 1390
|
|
393
|
+
KEY_PART_0 = 1391
|
|
394
|
+
VIEW_CHECKSUM = 1392
|
|
395
|
+
VIEW_MULTIUPDATE = 1393
|
|
396
|
+
VIEW_NO_INSERT_FIELD_LIST = 1394
|
|
397
|
+
VIEW_DELETE_MERGE_VIEW = 1395
|
|
398
|
+
CANNOT_USER = 1396
|
|
399
|
+
XAER_NOTA = 1397
|
|
400
|
+
XAER_INVAL = 1398
|
|
401
|
+
XAER_RMFAIL = 1399
|
|
402
|
+
XAER_OUTSIDE = 1400
|
|
403
|
+
XAER_RMERR = 1401
|
|
404
|
+
XA_RBROLLBACK = 1402
|
|
405
|
+
NONEXISTING_PROC_GRANT = 1403
|
|
406
|
+
PROC_AUTO_GRANT_FAIL = 1404
|
|
407
|
+
PROC_AUTO_REVOKE_FAIL = 1405
|
|
408
|
+
DATA_TOO_LONG = 1406
|
|
409
|
+
SP_BAD_SQLSTATE = 1407
|
|
410
|
+
STARTUP = 1408
|
|
411
|
+
LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR = 1409
|
|
412
|
+
CANT_CREATE_USER_WITH_GRANT = 1410
|
|
413
|
+
WRONG_VALUE_FOR_TYPE = 1411
|
|
414
|
+
TABLE_DEF_CHANGED = 1412
|
|
415
|
+
SP_DUP_HANDLER = 1413
|
|
416
|
+
SP_NOT_VAR_ARG = 1414
|
|
417
|
+
SP_NO_RETSET = 1415
|
|
418
|
+
CANT_CREATE_GEOMETRY_OBJECT = 1416
|
|
419
|
+
FAILED_ROUTINE_BREAK_BINLOG = 1417
|
|
420
|
+
BINLOG_UNSAFE_ROUTINE = 1418
|
|
421
|
+
BINLOG_CREATE_ROUTINE_NEED_SUPER = 1419
|
|
422
|
+
EXEC_STMT_WITH_OPEN_CURSOR = 1420
|
|
423
|
+
STMT_HAS_NO_OPEN_CURSOR = 1421
|
|
424
|
+
COMMIT_NOT_ALLOWED_IN_SF_OR_TRG = 1422
|
|
425
|
+
NO_DEFAULT_FOR_VIEW_FIELD = 1423
|
|
426
|
+
SP_NO_RECURSION = 1424
|
|
427
|
+
TOO_BIG_SCALE = 1425
|
|
428
|
+
TOO_BIG_PRECISION = 1426
|
|
429
|
+
M_BIGGER_THAN_D = 1427
|
|
430
|
+
WRONG_LOCK_OF_SYSTEM_TABLE = 1428
|
|
431
|
+
CONNECT_TO_FOREIGN_DATA_SOURCE = 1429
|
|
432
|
+
QUERY_ON_FOREIGN_DATA_SOURCE = 1430
|
|
433
|
+
FOREIGN_DATA_SOURCE_DOESNT_EXIST = 1431
|
|
434
|
+
FOREIGN_DATA_STRING_INVALID_CANT_CREATE = 1432
|
|
435
|
+
FOREIGN_DATA_STRING_INVALID = 1433
|
|
436
|
+
CANT_CREATE_FEDERATED_TABLE = 1434
|
|
437
|
+
TRG_IN_WRONG_SCHEMA = 1435
|
|
438
|
+
STACK_OVERRUN_NEED_MORE = 1436
|
|
439
|
+
TOO_LONG_BODY = 1437
|
|
440
|
+
WARN_CANT_DROP_DEFAULT_KEYCACHE = 1438
|
|
441
|
+
TOO_BIG_DISPLAYWIDTH = 1439
|
|
442
|
+
XAER_DUPID = 1440
|
|
443
|
+
DATETIME_FUNCTION_OVERFLOW = 1441
|
|
444
|
+
CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG = 1442
|
|
445
|
+
VIEW_PREVENT_UPDATE = 1443
|
|
446
|
+
PS_NO_RECURSION = 1444
|
|
447
|
+
SP_CANT_SET_AUTOCOMMIT = 1445
|
|
448
|
+
MALFORMED_DEFINER = 1446
|
|
449
|
+
VIEW_FRM_NO_USER = 1447
|
|
450
|
+
VIEW_OTHER_USER = 1448
|
|
451
|
+
NO_SUCH_USER = 1449
|
|
452
|
+
FORBID_SCHEMA_CHANGE = 1450
|
|
453
|
+
ROW_IS_REFERENCED_2 = 1451
|
|
454
|
+
NO_REFERENCED_ROW_2 = 1452
|
|
455
|
+
SP_BAD_VAR_SHADOW = 1453
|
|
456
|
+
TRG_NO_DEFINER = 1454
|
|
457
|
+
OLD_FILE_FORMAT = 1455
|
|
458
|
+
SP_RECURSION_LIMIT = 1456
|
|
459
|
+
SP_PROC_TABLE_CORRUPT = 1457
|
|
460
|
+
SP_WRONG_NAME = 1458
|
|
461
|
+
TABLE_NEEDS_UPGRADE = 1459
|
|
462
|
+
SP_NO_AGGREGATE = 1460
|
|
463
|
+
MAX_PREPARED_STMT_COUNT_REACHED = 1461
|
|
464
|
+
VIEW_RECURSIVE = 1462
|
|
465
|
+
NON_GROUPING_FIELD_USED = 1463
|
|
466
|
+
TABLE_CANT_HANDLE_SPKEYS = 1464
|
|
467
|
+
NO_TRIGGERS_ON_SYSTEM_SCHEMA = 1465
|
|
468
|
+
USERNAME = 1466
|
|
469
|
+
HOSTNAME = 1467
|
|
470
|
+
WRONG_STRING_LENGTH = 1468
|
|
471
|
+
ERROR_LAST = 1468
|
|
472
|
+
|
|
473
|
+
# https://github.com/PyMySQL/PyMySQL/issues/607
|
|
474
|
+
CONSTRAINT_FAILED = 4025
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
DECIMAL = 0
|
|
2
|
+
TINY = 1
|
|
3
|
+
SHORT = 2
|
|
4
|
+
LONG = 3
|
|
5
|
+
FLOAT = 4
|
|
6
|
+
DOUBLE = 5
|
|
7
|
+
NULL = 6
|
|
8
|
+
TIMESTAMP = 7
|
|
9
|
+
LONGLONG = 8
|
|
10
|
+
INT24 = 9
|
|
11
|
+
DATE = 10
|
|
12
|
+
TIME = 11
|
|
13
|
+
DATETIME = 12
|
|
14
|
+
YEAR = 13
|
|
15
|
+
NEWDATE = 14
|
|
16
|
+
VARCHAR = 15
|
|
17
|
+
BIT = 16
|
|
18
|
+
JSON = 245
|
|
19
|
+
NEWDECIMAL = 246
|
|
20
|
+
ENUM = 247
|
|
21
|
+
SET = 248
|
|
22
|
+
TINY_BLOB = 249
|
|
23
|
+
MEDIUM_BLOB = 250
|
|
24
|
+
LONG_BLOB = 251
|
|
25
|
+
BLOB = 252
|
|
26
|
+
VAR_STRING = 253
|
|
27
|
+
STRING = 254
|
|
28
|
+
GEOMETRY = 255
|
|
29
|
+
|
|
30
|
+
CHAR = TINY
|
|
31
|
+
INTERVAL = ENUM
|
|
32
|
+
BOOL = TINY
|
|
33
|
+
|
|
34
|
+
# SingleStoreDB-specific.
|
|
35
|
+
# Only enabled when enable_extended_types_metadata=1 in the server.
|
|
36
|
+
BSON = 1001
|
|
37
|
+
FLOAT32_VECTOR_JSON = 2001
|
|
38
|
+
FLOAT64_VECTOR_JSON = 2002
|
|
39
|
+
INT8_VECTOR_JSON = 2003
|
|
40
|
+
INT16_VECTOR_JSON = 2004
|
|
41
|
+
INT32_VECTOR_JSON = 2005
|
|
42
|
+
INT64_VECTOR_JSON = 2006
|
|
43
|
+
FLOAT32_VECTOR = 3001
|
|
44
|
+
FLOAT64_VECTOR = 3002
|
|
45
|
+
INT8_VECTOR = 3003
|
|
46
|
+
INT16_VECTOR = 3004
|
|
47
|
+
INT32_VECTOR = 3005
|
|
48
|
+
INT64_VECTOR = 3006
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
SERVER_STATUS_IN_TRANS = 1
|
|
2
|
+
SERVER_STATUS_AUTOCOMMIT = 2
|
|
3
|
+
SERVER_MORE_RESULTS_EXISTS = 8
|
|
4
|
+
SERVER_QUERY_NO_GOOD_INDEX_USED = 16
|
|
5
|
+
SERVER_QUERY_NO_INDEX_USED = 32
|
|
6
|
+
SERVER_STATUS_CURSOR_EXISTS = 64
|
|
7
|
+
SERVER_STATUS_LAST_ROW_SENT = 128
|
|
8
|
+
SERVER_STATUS_DB_DROPPED = 256
|
|
9
|
+
SERVER_STATUS_NO_BACKSLASH_ESCAPES = 512
|
|
10
|
+
SERVER_STATUS_METADATA_CHANGED = 1024
|
|
File without changes
|