mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-6153 Trivial Lintian errors in MariaDB sources: spelling errors and wrong executable bits
This commit is contained in:
@ -683,7 +683,7 @@ The following options may be given as the first argument:
|
||||
plugins from a given library_file will be loaded.
|
||||
--plugin-load-add=name
|
||||
Optional semicolon-separated list of plugins to load.
|
||||
This option adds to the list speficied by --plugin-load
|
||||
This option adds to the list specified by --plugin-load
|
||||
in an incremental way. It can be specified many times,
|
||||
adding more plugins every time.
|
||||
--plugin-maturity=name
|
||||
@ -756,7 +756,7 @@ The following options may be given as the first argument:
|
||||
--relay-log-space-limit=#
|
||||
Maximum space to use for all relay logs
|
||||
--replicate-annotate-row-events
|
||||
Tells the slave to write annotate rows events recieved
|
||||
Tells the slave to write annotate rows events received
|
||||
from the master to its own binary log. Ignored if
|
||||
log_slave_updates is not set
|
||||
--replicate-do-db=name
|
||||
|
@ -613,8 +613,8 @@ insert into t2 values ("1", "1", "sup", "0"), ("2", "1", "sup", "1"),
|
||||
("4", "1", "sup", "0");
|
||||
create table t3 (
|
||||
id int(11) not null default '0',
|
||||
preceeding_id int(11) not null default '0',
|
||||
primary key (id,preceeding_id)
|
||||
preceding_id int(11) not null default '0',
|
||||
primary key (id,preceding_id)
|
||||
);
|
||||
create table t4 (
|
||||
user_id varchar(50) not null,
|
||||
@ -625,7 +625,7 @@ insert into t4 values("nicke", "imp");
|
||||
prepare stmt from
|
||||
'select distinct t1.partner_id
|
||||
from t1 left join t3 on t1.id = t3.id
|
||||
left join t1 pp on pp.id = t3.preceeding_id
|
||||
left join t1 pp on pp.id = t3.preceding_id
|
||||
where
|
||||
exists (
|
||||
select *
|
||||
|
@ -1007,8 +1007,8 @@ insert into t2 values ("1", "1", "sup", "0"), ("2", "1", "sup", "1"),
|
||||
("4", "1", "sup", "0");
|
||||
create table t3 (
|
||||
id int(11) not null default '0',
|
||||
preceeding_id int(11) not null default '0',
|
||||
primary key (id,preceeding_id)
|
||||
preceding_id int(11) not null default '0',
|
||||
primary key (id,preceding_id)
|
||||
);
|
||||
create table t4 (
|
||||
user_id varchar(50) not null,
|
||||
|
@ -1020,8 +1020,8 @@ insert into t2 values ("1", "1", "sup", "0"), ("2", "1", "sup", "1"),
|
||||
("4", "1", "sup", "0");
|
||||
create table t3 (
|
||||
id int(11) not null default '0',
|
||||
preceeding_id int(11) not null default '0',
|
||||
primary key (id,preceeding_id)
|
||||
preceding_id int(11) not null default '0',
|
||||
primary key (id,preceding_id)
|
||||
);
|
||||
create table t4 (
|
||||
user_id varchar(50) not null,
|
||||
|
Reference in New Issue
Block a user