Search Results
https://dev.mysql.com/doc/internals/en/query-event.html
Note only written if code > 0 (aka "en_US") Q_CHARSET_DATABASE_CODE characterset and collation of the schema Q_TABLE_MAP_FOR_UPDATE_CODE a 64bit-field ... Binlog::QUERY_EVENT: The query event is used to send text querys right the binlog.
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-tls.html
The functions described in this section were added in NDB 8.3 to support Transport Layer Security for communications between nodes. Also included in this section is information about two data structures used by some of these functions. For ...
https://dev.mysql.com/doc/ndbapi/en/ndb-datafile.html
Return value The path to the data file on the data node's file system, a string (character pointer). Return value The name of the associated tablespace (as a character pointer). Signature const char* setPath ( void ) const Parameters The path to the ... This section provides information about the Datafile class, which models an NDB Cluster data ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-read.html
This example illustrates basic retrieval of one or more rows from an NDB table using the NdbRecord interface and an NdbScanOperation. We assume that you have already created and populated the basic table, perhaps using the row insertion example ...
https://dev.mysql.com/doc/ndbapi/en/ndb-tablespace.html
For an overview of Cluster Disk Data and data file characteristics, see CREATE TABLESPACE Statement, in the MySQL Manual. Return value A reference to the structure which describes the tablespace auto-grow characteristics; for details, see ...
https://dev.mysql.com/doc/ndbapi/en/ndb-undofile.html
Return value The name of the log file group, a string value (as a character pointer). Return value The file system path, a string (as a character pointer). Signature Using a log file group name: void setLogfileGroup ( const char* name ) Using a ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-error-handling.html
Row number and character position details are added to warning messages(Non strict mode) in csv and JSON file formats. Warning message - Row number (13), character position (1), and byte offset (66) are added to csv or JSON warning message. Warning ... See MySQL 9.5 Error Message Reference for Lakehouse error ...
https://dev.mysql.com/doc/refman/8.4/en/alter-table-examples.html
row *************************** Table: t1 Create Table: CREATE TABLE `t2` ( `c1` int(11) DEFAULT NULL ) /*!50100 TABLESPACE ts_1 STORAGE DISK */ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 1 row in set (0.01 sec) To change ...For NDB tables, it is also possible to change the storage type used for a table or ...
https://dev.mysql.com/doc/refman/8.4/en/charset-binary-collations.html
Binary strings (as stored using the BINARY, VARBINARY, and BLOB data types) have a character set and collation named binary. Nonbinary strings (as stored using the CHAR, VARCHAR, and TEXT data types) have a character set and collation other than ...
https://dev.mysql.com/doc/refman/8.4/en/charset-examples.html
The following examples show how MySQL determines default character set and collation values. Example 1: Table and Column Definition CREATE TABLE t1 ( c1 CHAR(10) CHARACTER SET latin1 COLLATE latin1_german1_ci ) DEFAULT CHARACTER SET latin2 COLLATE ...Notice that there is no problem with storing a latin1 column in a latin2 ...