Search Results
https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-6.html
(Bug #37955025) InnoDB: When rebuilding a primary key, the server sometimes encountered issues when duplicates were present, potentially leading to the server stopping unexpectedly. (Bug #37682648) Queries against the performance_schema.keyring_keys ... Note These release notes were created with the assistance of MySQL HeatWave ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-mcmd.html
ssl_cert Type File name Default Value NULL The path name of the SSL public key certificate file in PEM format. ssl_key Type File name Default Value NULL The path name of the server SSL private key file in PEM format. For better security, use a ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-data-structures.html
This section describes C API data structures other than those used for prepared statements, the asynchronous interface, or the replication stream interface. For information about those, see Section 6.2, “C API Prepared Statement Data ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-32.html
(Bug #108814, Bug #34717205) When Connector/J looked for the presence of the ON DUPLICATE KEY UPDATE clause in prepared statements, it neglected the cases where the VALUES function was used without the VALUE(S) clause in INSERT statements. As a ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-prepare-an-anomaly-detection-model.html
mysql> CREATE TABLE credit_card_train ( transaction_id INT AUTO_INCREMENT PRIMARY KEY, home_address VARCHAR(100), purchase_location VARCHAR(100), purchase_amount DECIMAL(10, 2), purchase_time DATETIME, target INT ); Insert the sample data to train ... This topic describes how to prepare the data to use for two anomaly detection machine learning models: a semi-supervised anomaly detection model, and an unsupervised anomaly detection model for ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-explain-row.html
ML_EXPLAIN_ROW Syntax mysql> SELECT sys.ML_EXPLAIN_ROW(input_data, model_handle, [options]); options: { JSON_OBJECT("key","value"[,"key","value"] ...) "key","value": { ['prediction_explainer', {'permutation_importance'|'shap'}|NULL] } } Required ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-explain.html
ML_EXPLAIN Syntax mysql> CALL sys.ML_EXPLAIN ('table_name', 'target_column_name', model_handle, [options]); options: { JSON_OBJECT("key","value"[,"key","value"] ...) "key","value": { ['model_explainer', ... Running the ML_EXPLAIN routine on a model ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-model-active.html
A JSON object literal that displays: Key: The total model size (bytes). A second JSON object literal that displays: Key: The model handle for a loaded and active model owned by the current user. A JSON object literal that displays: Key: The total ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-predict-row.html
mysql> SELECT sys.ML_PREDICT_ROW(JSON_OBJECT("column_name", value, "column_name", value, ...), model_handle, options); Run ML_PREDICT_ROW on multiple rows of data by specifying the columns as key-value pairs in JSON format and select from a table.
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-rag.html
retrieval_options: specifies optional context retrieval parameters as key-value pairs in JSON format. It can include the following parameters: retrievaloptions: JSON_OBJECT(retrievaloptkeyvalue[, retrievaloptkeyvalue]...) retrievaloptkeyvalue: { ...