1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

consistent error messages, no <angle quoting>

only WARN_OPTION_IGNORED was angle-quotting its parameter, no
other error message did it. Remove angle quoting for consistency.
This commit is contained in:
Sergei Golubchik
2025-03-28 21:56:44 +01:00
parent 7db60533c7
commit 606edaa6cd
14 changed files with 72 additions and 72 deletions

View File

@@ -782,10 +782,10 @@ SUBPARTITION BY HASH(TO_DAYS(purchased))
DATA DIRECTORY = '/tmp/not-existing' DATA DIRECTORY = '/tmp/not-existing'
INDEX DIRECTORY = '/tmp/not-existing'); INDEX DIRECTORY = '/tmp/not-existing');
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
SHOW CREATE TABLE t1; SHOW CREATE TABLE t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (
@@ -805,8 +805,8 @@ DATA DIRECTORY = '/tmp/not-existing'
INDEX DIRECTORY = '/tmp/not-existing', INDEX DIRECTORY = '/tmp/not-existing',
SUBPARTITION sp1)); SUBPARTITION sp1));
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
SHOW CREATE TABLE t1; SHOW CREATE TABLE t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (
@@ -825,8 +825,8 @@ PARTITION BY RANGE(YEAR(purchased))
DATA DIRECTORY = '/tmp/not-existing' DATA DIRECTORY = '/tmp/not-existing'
INDEX DIRECTORY = '/tmp/not-existing'); INDEX DIRECTORY = '/tmp/not-existing');
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
SHOW CREATE TABLE t1; SHOW CREATE TABLE t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (

View File

@@ -24,8 +24,8 @@ data directory='/not/existing'
index directory='/not/existing' index directory='/not/existing'
); );
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
show create table t2; show create table t2;
Table Create Table Table Create Table
t2 CREATE TABLE `t2` ( t2 CREATE TABLE `t2` (

View File

@@ -156,8 +156,8 @@ data directory='/not/existing'
index directory='/not/existing' index directory='/not/existing'
); );
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
show create table t2; show create table t2;
Table Create Table Table Create Table
t2 CREATE TABLE `t2` ( t2 CREATE TABLE `t2` (

View File

@@ -15,16 +15,16 @@ DATA DIRECTORY = 'E:/mysqltest/p2Data'
INDEX DIRECTORY = 'F:/mysqltest/p2Index' INDEX DIRECTORY = 'F:/mysqltest/p2Index'
); );
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
INSERT INTO t1 VALUES (NULL, "first", 1); INSERT INTO t1 VALUES (NULL, "first", 1);
INSERT INTO t1 VALUES (NULL, "second", 2); INSERT INTO t1 VALUES (NULL, "second", 2);
INSERT INTO t1 VALUES (NULL, "third", 3); INSERT INTO t1 VALUES (NULL, "third", 3);
ALTER TABLE t1 ADD PARTITION (PARTITION p3 DATA DIRECTORY = 'G:/mysqltest/p3Data' INDEX DIRECTORY = 'H:/mysqltest/p3Index'); ALTER TABLE t1 ADD PARTITION (PARTITION p3 DATA DIRECTORY = 'G:/mysqltest/p3Data' INDEX DIRECTORY = 'H:/mysqltest/p3Index');
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
INSERT INTO t1 VALUES (NULL, "last", 4); INSERT INTO t1 VALUES (NULL, "last", 4);
DROP TABLE t1; DROP TABLE t1;

View File

@@ -86,7 +86,7 @@ drop database mysqltest;
create table t1 (a int not null) engine=myisam; create table t1 (a int not null) engine=myisam;
alter table t1 data directory="MYSQLTEST_VARDIR/tmp"; alter table t1 data directory="MYSQLTEST_VARDIR/tmp";
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
show create table t1; show create table t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (
@@ -95,7 +95,7 @@ t1 CREATE TABLE `t1` (
alter table t1 add b int; alter table t1 add b int;
alter table t1 data directory="MYSQLTEST_VARDIR/log"; alter table t1 data directory="MYSQLTEST_VARDIR/log";
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
show create table t1; show create table t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (
@@ -104,7 +104,7 @@ t1 CREATE TABLE `t1` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
alter table t1 index directory="MYSQLTEST_VARDIR/log"; alter table t1 index directory="MYSQLTEST_VARDIR/log";
Warnings: Warnings:
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
show create table t1; show create table t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (
@@ -185,8 +185,8 @@ ERROR HY000: Can't create/write to file 'TEST_DIR/master-data_var/t1.MYI' (Errco
SET @OLD_SQL_MODE=@@SQL_MODE, @@SQL_MODE='NO_DIR_IN_CREATE'; SET @OLD_SQL_MODE=@@SQL_MODE, @@SQL_MODE='NO_DIR_IN_CREATE';
CREATE TABLE t1(a INT) DATA DIRECTORY='MYSQLTEST_VARDIR/tmp' INDEX DIRECTORY='MYSQLTEST_VARDIR/tmp'; CREATE TABLE t1(a INT) DATA DIRECTORY='MYSQLTEST_VARDIR/tmp' INDEX DIRECTORY='MYSQLTEST_VARDIR/tmp';
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
DROP TABLE t1; DROP TABLE t1;
SET @@SQL_MODE=@OLD_SQL_MODE; SET @@SQL_MODE=@OLD_SQL_MODE;
# #

View File

@@ -9,8 +9,8 @@ drop table nu;
drop table if exists t1; drop table if exists t1;
CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM; CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM;
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
drop table t1; drop table t1;
CREATE TABLE t1 (a int, b int); CREATE TABLE t1 (a int, b int);
INSERT INTO t1 VALUES (1,1); INSERT INTO t1 VALUES (1,1);

View File

@@ -10,8 +10,8 @@ PRIMARY KEY (c1))
ENGINE = archive ENGINE = archive
DATA DIRECTORY = 'MYSQL_TMP_DIR/archive' INDEX DIRECTORY = 'MYSQL_TMP_DIR/archive'; DATA DIRECTORY = 'MYSQL_TMP_DIR/archive' INDEX DIRECTORY = 'MYSQL_TMP_DIR/archive';
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
INSERT INTO t1 VALUES (NULL, "first", 1); INSERT INTO t1 VALUES (NULL, "first", 1);
INSERT INTO t1 VALUES (NULL, "second", 2); INSERT INTO t1 VALUES (NULL, "second", 2);
INSERT INTO t1 VALUES (NULL, "third", 3); INSERT INTO t1 VALUES (NULL, "third", 3);

View File

@@ -11,7 +11,7 @@ ERROR HY000: Can't create table `test`.`t1` (errno: 2 "No such file or directory
CREATE TABLE t1 (a int AUTO_INCREMENT KEY, b char(30)) CREATE TABLE t1 (a int AUTO_INCREMENT KEY, b char(30))
ENGINE archive DATA DIRECTORY = 'MYSQL_TMP_DIR/archive' INDEX DIRECTORY = 'MYSQL_TMP_DIR/archive'; ENGINE archive DATA DIRECTORY = 'MYSQL_TMP_DIR/archive' INDEX DIRECTORY = 'MYSQL_TMP_DIR/archive';
Warnings: Warnings:
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
INSERT INTO t1 VALUES (NULL, "blue"); INSERT INTO t1 VALUES (NULL, "blue");
INSERT INTO t1 VALUES (NULL, "red"); INSERT INTO t1 VALUES (NULL, "red");
INSERT INTO t1 VALUES (NULL, "yellow"); INSERT INTO t1 VALUES (NULL, "yellow");
@@ -35,7 +35,7 @@ NO_DIR_IN_CREATE
CREATE TABLE t1 (a int AUTO_INCREMENT KEY, b char(30)) CREATE TABLE t1 (a int AUTO_INCREMENT KEY, b char(30))
ENGINE archive DATA DIRECTORY = 'MYSQL_TMP_DIR/archive'; ENGINE archive DATA DIRECTORY = 'MYSQL_TMP_DIR/archive';
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
INSERT INTO t1 VALUES (NULL, "blue"); INSERT INTO t1 VALUES (NULL, "blue");
INSERT INTO t1 VALUES (NULL, "red"); INSERT INTO t1 VALUES (NULL, "red");
INSERT INTO t1 VALUES (NULL, "yellow"); INSERT INTO t1 VALUES (NULL, "yellow");

View File

@@ -3,12 +3,12 @@ SELECT @@have_symlink;
DISABLED DISABLED
CREATE TABLE t1(a INT) ENGINE=InnoDB DATA DIRECTORY 'MYSQL_TMP_DIR'; CREATE TABLE t1(a INT) ENGINE=InnoDB DATA DIRECTORY 'MYSQL_TMP_DIR';
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
DROP TABLE t1; DROP TABLE t1;
CREATE TABLE t1(a INT) ENGINE=InnoDB; CREATE TABLE t1(a INT) ENGINE=InnoDB;
ALTER TABLE t1 DATA DIRECTORY 'MYSQL_TMP_DIR'; ALTER TABLE t1 DATA DIRECTORY 'MYSQL_TMP_DIR';
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
SHOW CREATE TABLE t1; SHOW CREATE TABLE t1;
Table Create Table Table Create Table
t1 CREATE TABLE `t1` ( t1 CREATE TABLE `t1` (
@@ -35,17 +35,17 @@ DROP TABLE t2;
RENAME TABLE t1 TO t2; RENAME TABLE t1 TO t2;
ALTER TABLE t2 ADD UNIQUE INDEX(b), RENAME TO t3; ALTER TABLE t2 ADD UNIQUE INDEX(b), RENAME TO t3;
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
ALTER TABLE t3 RENAME TO t2; ALTER TABLE t3 RENAME TO t2;
ALTER TABLE t2 DROP INDEX b, RENAME TO t1; ALTER TABLE t2 DROP INDEX b, RENAME TO t1;
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
ALTER TABLE t1 CHANGE b c INT; ALTER TABLE t1 CHANGE b c INT;
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
ALTER TABLE t1 CHANGE c b INT NOT NULL; ALTER TABLE t1 CHANGE c b INT NOT NULL;
Warnings: Warnings:
Warning 1618 <DATA DIRECTORY> option ignored Warning 1618 DATA DIRECTORY option ignored
t1.ibd t1.ibd
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
DROP TABLE t1; DROP TABLE t1;

View File

@@ -62,8 +62,8 @@ PARTITION p1 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/'
PARTITION p2 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' ENGINE = INNODB PARTITION p2 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' ENGINE = INNODB
); );
Warnings: Warnings:
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
SHOW CREATE TABLE t; SHOW CREATE TABLE t;
Table Create Table Table Create Table
t CREATE TABLE `t` ( t CREATE TABLE `t` (

View File

@@ -50,12 +50,12 @@ DATA DIRECTORY = 'MYSQLTEST_VARDIR/mysql-test-data-dir'
INDEX DIRECTORY = 'MYSQLTEST_VARDIR/mysql-test-idx-dir' INDEX DIRECTORY = 'MYSQLTEST_VARDIR/mysql-test-idx-dir'
); );
Warnings: Warnings:
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
SHOW WARNINGS; SHOW WARNINGS;
Level Code Message Level Code Message
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
# Verifying .frm, .par, .isl & .ibd files # Verifying .frm, .par, .isl & .ibd files
---- MYSQLD_DATADIR/test ---- MYSQLD_DATADIR/test
db.opt db.opt

View File

@@ -62,8 +62,8 @@ PARTITION p1 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/'
PARTITION p2 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' ENGINE = INNODB PARTITION p2 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' ENGINE = INNODB
); );
Warnings: Warnings:
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
SHOW CREATE TABLE t; SHOW CREATE TABLE t;
Table Create Table Table Create Table
t CREATE TABLE `t` ( t CREATE TABLE `t` (
@@ -78,8 +78,8 @@ PARTITION p1 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/',
PARTITION p2 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' PARTITION p2 DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/'
); );
Warnings: Warnings:
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
SHOW CREATE TABLE t; SHOW CREATE TABLE t;
Table Create Table Table Create Table
t CREATE TABLE `t` ( t CREATE TABLE `t` (
@@ -94,8 +94,8 @@ PARTITION p1 INDEX DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/'
PARTITION p2 INDEX DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' ENGINE = INNODB PARTITION p2 INDEX DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/' ENGINE = INNODB
); );
Warnings: Warnings:
Warning 1982 <INDEX DIRECTORY> option ignored for InnoDB partition Warning 1982 INDEX DIRECTORY option ignored for InnoDB partition
Warning 1982 <INDEX DIRECTORY> option ignored for InnoDB partition Warning 1982 INDEX DIRECTORY option ignored for InnoDB partition
SHOW CREATE TABLE t; SHOW CREATE TABLE t;
Table Create Table Table Create Table
t CREATE TABLE `t` ( t CREATE TABLE `t` (
@@ -125,10 +125,10 @@ DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_here/'
ENGINE = INNODB ENGINE = INNODB
); );
Warnings: Warnings:
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
Warning 1618 <INDEX DIRECTORY> option ignored Warning 1618 INDEX DIRECTORY option ignored
SET innodb_strict_mode=@strict; SET innodb_strict_mode=@strict;
ALTER TABLE t ALTER TABLE t
REORGANIZE PARTITION p1,p2 INTO REORGANIZE PARTITION p1,p2 INTO
@@ -143,14 +143,14 @@ DATA DIRECTORY = 'MYSQLTEST_VARDIR/tmp/partitions_somewhere_else/'
ENGINE = INNODB ENGINE = INNODB
); );
Warnings: Warnings:
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <INDEX DIRECTORY> option ignored for InnoDB partition Warning 1982 INDEX DIRECTORY option ignored for InnoDB partition
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <INDEX DIRECTORY> option ignored for InnoDB partition Warning 1982 INDEX DIRECTORY option ignored for InnoDB partition
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <INDEX DIRECTORY> option ignored for InnoDB partition Warning 1982 INDEX DIRECTORY option ignored for InnoDB partition
Warning 1982 <DATA DIRECTORY> option ignored for InnoDB partition Warning 1982 DATA DIRECTORY option ignored for InnoDB partition
Warning 1982 <INDEX DIRECTORY> option ignored for InnoDB partition Warning 1982 INDEX DIRECTORY option ignored for InnoDB partition
SHOW CREATE TABLE t; SHOW CREATE TABLE t;
Table Create Table Table Create Table
t CREATE TABLE `t` ( t CREATE TABLE `t` (

View File

@@ -133,12 +133,12 @@ connection slave;
include/stop_slave.inc include/stop_slave.inc
CHANGE MASTER TO master_log_pos=io_log_pos, master_log_file='io_log_file', master_use_gtid=Slave_Pos; CHANGE MASTER TO master_log_pos=io_log_pos, master_log_file='io_log_file', master_use_gtid=Slave_Pos;
Warnings: Warnings:
Note 1618 <MASTER_LOG_FILE> option ignored Note 1618 MASTER_LOG_FILE option ignored
Note 1618 <MASTER_LOG_POS> option ignored Note 1618 MASTER_LOG_POS option ignored
CHANGE MASTER TO relay_log_pos=relay_log_pos, relay_log_file='relay_log_file', master_use_gtid=Slave_Pos; CHANGE MASTER TO relay_log_pos=relay_log_pos, relay_log_file='relay_log_file', master_use_gtid=Slave_Pos;
Warnings: Warnings:
Note 1618 <RELAY_LOG_FILE> option ignored Note 1618 RELAY_LOG_FILE option ignored
Note 1618 <RELAY_LOG_POS> option ignored Note 1618 RELAY_LOG_POS option ignored
include/start_slave.inc include/start_slave.inc
include/rpl_end.inc include/rpl_end.inc
# #

View File

@@ -8445,11 +8445,11 @@ WARN_NO_MASTER_INFO
spa "No existe conexión maestra '%.*s'" spa "No existe conexión maestra '%.*s'"
sw "Hakuna muunganisho mkuu '%.*s'" sw "Hakuna muunganisho mkuu '%.*s'"
WARN_OPTION_IGNORED WARN_OPTION_IGNORED
eng "<%-.64s> option ignored" eng "%s option ignored"
ger "Option <%-.64s> ignoriert" ger "Option %s ignoriert"
geo "პარამეტრი <%-.64s> იგნორირებულია" geo "პარამეტრი %s იგნორირებულია"
spa "Opción <%-.64s> ignorada" spa "Opción %s ignorada"
sw "<%-.64s> chaguo limepuuzwa" sw "%s chaguo limepuuzwa"
ER_PLUGIN_DELETE_BUILTIN ER_PLUGIN_DELETE_BUILTIN
chi "内置插件无法删除" chi "内置插件无法删除"
eng "Built-in plugins cannot be deleted" eng "Built-in plugins cannot be deleted"
@@ -10594,10 +10594,10 @@ ER_WARN_AGGFUNC_DEPENDENCE
sw "Jumla ya kukokotoa '%-.192s)' ya SELECT #%d ni ya SELECT #%d" sw "Jumla ya kukokotoa '%-.192s)' ya SELECT #%d ni ya SELECT #%d"
ukr "Агрегатна функція '%-.192s)' з SELECTу #%d належить до SELECTу #%d" ukr "Агрегатна функція '%-.192s)' з SELECTу #%d належить до SELECTу #%d"
WARN_INNODB_PARTITION_OPTION_IGNORED WARN_INNODB_PARTITION_OPTION_IGNORED
chi "<%-.64s> innodb分区忽略的选项" chi "%s innodb分区忽略的选项"
eng "<%-.64s> option ignored for InnoDB partition" eng "%s option ignored for InnoDB partition"
spa "<%-.64s> opción ignorada para partición InnoDB" spa "%s opción ignorada para partición InnoDB"
sw "<%-.64s> chaguo limepuuzwa kwa kizigeu cha InnoDB" sw " %s chaguo limepuuzwa kwa kizigeu cha InnoDB"
# #
# Internal errors, not used # Internal errors, not used