summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2014-05-13 11:53:30 +0200
committerSergei Golubchik <sergii@pisem.net>2014-05-13 11:53:30 +0200
commitedf1fbd25b81ecb0d5636566b35fa2f7fb09b0b8 (patch)
treece67377af1b49c3b3f0fc093b7a12000e9d5744d /mysql-test/r/ps.result
parent1170a54060168d885cbf682836342d4fc4ccae1a (diff)
downloadmariadb-git-edf1fbd25b81ecb0d5636566b35fa2f7fb09b0b8.tar.gz
MDEV-6153 Trivial Lintian errors in MariaDB sources: spelling errors and wrong executable bits
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r--mysql-test/r/ps.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result
index ec680b112a3..31fcea528aa 100644
--- a/mysql-test/r/ps.result
+++ b/mysql-test/r/ps.result
@@ -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 *