diff options
author | Rucha Deodhar <rucha.deodhar@mariadb.com> | 2021-03-18 13:17:30 +0530 |
---|---|---|
committer | Rucha Deodhar <rucha.deodhar@mariadb.com> | 2021-04-09 21:38:57 +0530 |
commit | 0d19e878f220ec2d5ad35f98e220409b081b9b32 (patch) | |
tree | 6eb14b10c0349aad787dec2fa674d41c6e07971d /storage/connect/myconn.cpp | |
parent | de119fa2b65aa8f9300c8a01a9f4e1328881ec0e (diff) | |
download | mariadb-git-bb-10.6-MDEV-22189.tar.gz |
MDEV-22189: Change error messages inside code to have mariadb instead ofbb-10.6-MDEV-22189
mysql
Fix: Changed error messages, rerecorded results and changed other relevant
files.
Diffstat (limited to 'storage/connect/myconn.cpp')
-rw-r--r-- | storage/connect/myconn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/myconn.cpp b/storage/connect/myconn.cpp index 2e270368916..fdf107fe224 100644 --- a/storage/connect/myconn.cpp +++ b/storage/connect/myconn.cpp @@ -642,7 +642,7 @@ int MYSQLC::PrepareSQL(PGLOBAL g, const char *stmt) int MYSQLC::BindParams(PGLOBAL g, MYSQL_BIND *bind) { if (!m_DB) { - strcpy(g->Message, "MySQL not connected"); + strcpy(g->Message, "MariaDB not connected"); return RC_FX; } else assert(m_Stmt); |