Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4d7ad72e
Commit
4d7ad72e
authored
Oct 07, 2008
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed test suite failures in 5.1-bugteam
parent
e9ff58bb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
0 deletions
+9
-0
mysql-test/r/trigger-trans.result
mysql-test/r/trigger-trans.result
+2
-0
mysql-test/suite/rpl/r/rpl_temporary.result
mysql-test/suite/rpl/r/rpl_temporary.result
+3
-0
mysql-test/suite/rpl/t/rpl_temporary.test
mysql-test/suite/rpl/t/rpl_temporary.test
+2
-0
mysql-test/t/trigger-trans.test
mysql-test/t/trigger-trans.test
+2
-0
No files found.
mysql-test/r/trigger-trans.result
View file @
4d7ad72e
...
...
@@ -188,3 +188,5 @@ b val
12 e
13 f
14 g
drop trigger t1_after_insert;
drop table t1,t2;
mysql-test/suite/rpl/r/rpl_temporary.result
View file @
4d7ad72e
...
...
@@ -24,6 +24,9 @@ drop table if exists t1,t2;
create table t1(f int);
create table t2(f int);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
SELECT COUNT(*) FROM t1;
COUNT(*)
10
create temporary table t3(f int);
insert into t3 select * from t1 where f<6;
create temporary table t3(f int);
...
...
mysql-test/suite/rpl/t/rpl_temporary.test
View file @
4d7ad72e
...
...
@@ -56,6 +56,8 @@ drop table if exists t1,t2;
create
table
t1
(
f
int
);
create
table
t2
(
f
int
);
insert
into
t1
values
(
1
),(
2
),(
3
),(
4
),(
5
),(
6
),(
7
),(
8
),(
9
),(
10
);
# Auxiliary select (We want that all rows are in the table)
SELECT
COUNT
(
*
)
FROM
t1
;
connection
con1
;
create
temporary
table
t3
(
f
int
);
...
...
mysql-test/t/trigger-trans.test
View file @
4d7ad72e
...
...
@@ -175,3 +175,5 @@ insert into t1 values ( 123, 'a'), ( 123, 'b'), ( 123, 'c'),
insert
into
t1
values
(
654
,
'a'
),
(
654
,
'b'
),
(
654
,
'c'
),
(
654
,
'd'
),
(
654
,
'e'
),
(
654
,
'f'
),
(
654
,
'g'
);
select
*
from
t2
order
by
b
;
drop
trigger
t1_after_insert
;
drop
table
t1
,
t2
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment