Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-sqlstate.html
const char * mysql_sqlstate(MYSQL *mysql) Description Returns a null-terminated string containing the SQLSTATE error code for the most recently executed SQL statement. '00000' means “no error.” The values are specified by ANSI SQL and ODBC. For ...If you call mysql_sqlstate() after mysql_real_connect() fails, mysql_sqlstate() might not return a useful ...
https://dev.mysql.com/doc/relnotes/mysql-cluster/8.4/en/news-8-4-4.html
(Bug #37201922) NDB Replication: The replication applier normally retries temporary errors occurring while applying transactions. Problems arose when committing this statement, because temporary errors were not handled properly. Replica skip error ... MySQL NDB Cluster 8.4.4 is a new LTS release of NDB 8.4, based on MySQL Server 8.4 and including features in version 8.4 of the NDB storage engine, as well as fixing recently discovered bugs in previous NDB Cluster ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-start.html
Errors that occur while using ClusterJ should be handled by the application with a common error handler. The handler needs to be able to detect and distinguish among three types of errors, and handle them accordingly: Normal errors: These are errors ... In this section, we discuss how to start ClusterJ applications and the ClusterJ application ...
https://dev.mysql.com/doc/ndbapi/en/ndb-table.html
Signature int aggregate ( struct NdbError& error ) Parameters A reference to an NdbError object. A nonzer4o value should be interpreted as an error code for the type of error. Return value A return value of 0 indicates an error; otherwise, this is ... This section provides information about the Table class, which models a database table in the NDB ...
https://dev.mysql.com/doc/refman/8.4/en/change-replication-source-to.html
The presence of such characters in these values causes the statement to fail with an error. CHANGE REPLICATION SOURCE TO causes the previous values for SOURCE_HOST, SOURCE_PORT, SOURCE_LOG_FILE, and SOURCE_LOG_POS to be written to the error log, ...
https://dev.mysql.com/doc/refman/8.4/en/data-masking-plugin-functions.html
Return value: The masked Social Security number as a string, or an error if the argument is not the correct length. Example: mysql> SELECT gen_dictionary_load('/usr/local/mysql/mysql-files/mydict','mydict'); ... The MySQL Enterprise Data Masking and ...
https://dev.mysql.com/doc/refman/8.4/en/declare-condition.html
DECLARE condition_name CONDITION FOR condition_value condition_value: { mysql_error_code | SQLSTATE [VALUE] sqlstate_value } The DECLARE ... CONDITION statement declares a named error condition, associating a name with a condition that needs ...The ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-table-import.html
A schema mismatch error is reported if the clauses do not match. Otherwise, a schema mismatch error is reported when you attempt the import operation. (You can obtain the table definition using SHOW CREATE TABLE syntax.) If the table definition does ... This section describes how to import tables using the Transportable Tablespaces feature, which permits importing tables, partitioned tables, or individual table partitions that reside in file-per-table ...
https://dev.mysql.com/doc/refman/8.4/en/kerberos-pluggable-authentication.html
For example: [mysqld] authentication_kerberos_service_key_tab=/var/mysql/data/mysql.keytab If the keytab file is not in the correct place or does not contain a valid SPN key, the MySQL server does not validate this, but clients return authentication ... Note Kerberos pluggable authentication is an extension included in MySQL Enterprise Edition, a commercial ...
https://dev.mysql.com/doc/refman/8.4/en/miscellaneous-functions.html
For example, matching fails for this query: mysql> SELECT GROUPING((SELECT MAX(name) FROM t1)) FROM t1 GROUP BY (SELECT MAX(name) FROM t1) WITH ROLLUP; ERROR 3580 (HY000): Argument #1 of GROUPING function is not in GROUP BY GROUP BY literal ...The ...