Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-table-syntax-sql.html
The supported options are: 1: An error does not occur for any missing file, and data loading continues with the existing files. 0: If any file is missing, an error occurs and data is not loaded. If any of the specified files are not available, an ...
https://dev.mysql.com/doc/internals/en/x-protocol-messages-messages.html
Parameters length -- length of the whole message message_type -- type of the message_payload message_payload -- the message's payload encoded using Google Protobuf if not otherwise noted. A message sequence either: finishes successfully if it ...
https://dev.mysql.com/doc/refman/8.4/en/data-masking-component-functions.html
Return value: The masked Canada SIN as a string encoded in the utf8mb4 character set, an error if the argument is not the correct length, or NULL if str is in incorrect format or contains a multibyte character. Return value: The masked International ...Example: mysql> SELECT mask_canada_sin('046-454-286'), mask_canada_sin('abcdefijk'); +--------------------------------+------------------------------+ | mask_canada_sin('046-454-286') | mask_canada_sin('abcdefijk') | +--------------------------------+------------------------------+ | XXX-XXX-XXX | XXXXXXXXX | +--------------------------------+------------------------------+ mysql> SELECT mask_canada_sin('909'); ERROR 1123 (HY000): Can't initialize function 'mask_canada_sin'; Argument 0 is too ...
https://dev.mysql.com/doc/refman/8.4/en/myisam-repair.html
Symptoms of corrupted tables include queries that abort unexpectedly and observable errors such as these: Can't find file tbl_name.MYI (Errcode: nnn) Unexpected end of file Record file is crashed Got error nnn from table handler To get more ...This ... The discussion in this section describes how to use myisamchk on MyISAM tables (extensions .MYI and ...
https://dev.mysql.com/doc/refman/8.4/en/spatial-operator-functions.html
If any geometry argument is not a syntactically well-formed geometry, an ER_GIS_INVALID_DATA error occurs. If any geometry argument is a syntactically well-formed geometry in an undefined spatial reference system (SRS), an ER_SRS_NOT_FOUND error ...
https://dev.mysql.com/doc/refman/8.4/en/audit-log-file-formats.html
To see the associations between error codes, SQLSTATE values, and messages, see Server Error Message Reference. Example: <STATUS>1051</STATUS> <STATUS_CODE> An unsigned integer representing the command status: 0 for success, 1 if an error occurred.
https://dev.mysql.com/doc/refman/8.4/en/mysql-nutshell.html
Exit code (return value) information with shutdown messages during initialization or server shutdown and end) In addition, if the server was built using WITH_SYSTEMD, the server now includes every systemd message in the error log. When an error ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-logs-cluster-log.html
[Occurred during startphase start_phase.] [ Initiated by signal.] [Caused by error error_code: 'error_message(error_classification). In the event of arbitration failure, an error_message and an arbitration state_code are provided; definitions for ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-audit-plugins.html
null_audit_abort_value: The custom error code to use when an event is aborted. It is also possible to specify a custom error code by setting the null_audit_abort_value variable to the value that the notification routine should return: SET ...Audit ... This section describes how to write a server-side audit plugin, using the example plugin found in the plugin/audit_null directory of MySQL source ...
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-array-adapter.html
static void do_insert(Ndb& ndb) { const NdbDictionary::Dictionary* dict = ndb.getDictionary(); const NdbDictionary::Table *table = dict->getTable("api_array_using_adapter"); if (table == NULL) { APIERROR(dict->getNdbError()); } // Get a column ...