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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6accbba0
Commit
6accbba0
authored
Dec 17, 2007
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Order results to be deterministic.
Follow SergG's lead with mysqlcheck result.
parent
880a202a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
21 deletions
+22
-21
mysql-test/r/mysqlcheck.result
mysql-test/r/mysqlcheck.result
+2
-1
mysql-test/suite/rpl/r/rpl_invoked_features.result
mysql-test/suite/rpl/r/rpl_invoked_features.result
+12
-12
mysql-test/suite/rpl/t/rpl_invoked_features.test
mysql-test/suite/rpl/t/rpl_invoked_features.test
+8
-8
No files found.
mysql-test/r/mysqlcheck.result
View file @
6accbba0
...
...
@@ -70,7 +70,8 @@ insert into t_bug25347 values (1),(2),(3);
flush tables;
removing and creating
d_bug25347.t_bug25347
error : Incorrect file format 't_bug25347'
Error : Incorrect file format 't_bug25347'
error : Corrupt
insert into t_bug25347 values (4),(5),(6);
ERROR HY000: Incorrect file format 't_bug25347'
d_bug25347.t_bug25347
...
...
mysql-test/suite/rpl/r/rpl_invoked_features.result
View file @
6accbba0
...
...
@@ -116,23 +116,23 @@ t12
t13
t2
t3
SELECT table_name FROM information_schema.views WHERE table_schema='test';
SELECT table_name FROM information_schema.views WHERE table_schema='test'
order by table_name
;
table_name
v1
v11
SELECT trigger_name, event_manipulation, event_object_table FROM information_schema.triggers WHERE trigger_schema='test';
SELECT trigger_name, event_manipulation, event_object_table FROM information_schema.triggers WHERE trigger_schema='test'
order by trigger_name
;
trigger_name event_manipulation event_object_table
t1_tr1 INSERT t1
t1_tr2 UPDATE t1
t11_tr1 INSERT t11
t11_tr2 UPDATE t11
SELECT routine_type, routine_name FROM information_schema.routines WHERE routine_schema='test';
t1_tr1 INSERT t1
t1_tr2 UPDATE t1
SELECT routine_type, routine_name FROM information_schema.routines WHERE routine_schema='test' order by routine_name;
routine_type routine_name
FUNCTION f1
FUNCTION f2
PROCEDURE p1
PROCEDURE p11
SELECT event_name, status FROM information_schema.events WHERE event_schema='test';
SELECT event_name, status FROM information_schema.events WHERE event_schema='test'
order by event_name
;
event_name status
e1 DISABLED
e11 DISABLED
...
...
@@ -276,23 +276,23 @@ t12
t13
t2
t3
SELECT table_name FROM information_schema.views WHERE table_schema='test';
SELECT table_name FROM information_schema.views WHERE table_schema='test'
order by table_name
;
table_name
v1
v11
SELECT trigger_name, event_manipulation, event_object_table FROM information_schema.triggers WHERE trigger_schema='test';
SELECT trigger_name, event_manipulation, event_object_table FROM information_schema.triggers WHERE trigger_schema='test'
order by trigger_name
;
trigger_name event_manipulation event_object_table
t1_tr1 INSERT t1
t1_tr2 UPDATE t1
t11_tr1 INSERT t11
t11_tr2 UPDATE t11
SELECT routine_type, routine_name FROM information_schema.routines WHERE routine_schema='test';
t1_tr1 INSERT t1
t1_tr2 UPDATE t1
SELECT routine_type, routine_name FROM information_schema.routines WHERE routine_schema='test' order by routine_name;
routine_type routine_name
FUNCTION f1
FUNCTION f2
PROCEDURE p1
PROCEDURE p11
SELECT event_name, status FROM information_schema.events WHERE event_schema='test';
SELECT event_name, status FROM information_schema.events WHERE event_schema='test'
order by event_name
;
event_name status
e1 SLAVESIDE_DISABLED
e11 SLAVESIDE_DISABLED
...
...
mysql-test/suite/rpl/t/rpl_invoked_features.test
View file @
6accbba0
...
...
@@ -202,10 +202,10 @@ SET GLOBAL EVENT_SCHEDULER = off;
# Check original objects
--
echo
SHOW
TABLES
LIKE
't%'
;
SELECT
table_name
FROM
information_schema
.
views
WHERE
table_schema
=
'test'
;
SELECT
trigger_name
,
event_manipulation
,
event_object_table
FROM
information_schema
.
triggers
WHERE
trigger_schema
=
'test'
;
SELECT
routine_type
,
routine_name
FROM
information_schema
.
routines
WHERE
routine_schema
=
'test'
;
SELECT
event_name
,
status
FROM
information_schema
.
events
WHERE
event_schema
=
'test'
;
SELECT
table_name
FROM
information_schema
.
views
WHERE
table_schema
=
'test'
order
by
table_name
;
SELECT
trigger_name
,
event_manipulation
,
event_object_table
FROM
information_schema
.
triggers
WHERE
trigger_schema
=
'test'
order
by
trigger_name
;
SELECT
routine_type
,
routine_name
FROM
information_schema
.
routines
WHERE
routine_schema
=
'test'
order
by
routine_name
;
SELECT
event_name
,
status
FROM
information_schema
.
events
WHERE
event_schema
=
'test'
order
by
event_name
;
# Check original data
--
echo
...
...
@@ -229,10 +229,10 @@ SELECT a,b FROM v11 ORDER BY a;
# Check replicated objects
--
echo
SHOW
TABLES
LIKE
't%'
;
SELECT
table_name
FROM
information_schema
.
views
WHERE
table_schema
=
'test'
;
SELECT
trigger_name
,
event_manipulation
,
event_object_table
FROM
information_schema
.
triggers
WHERE
trigger_schema
=
'test'
;
SELECT
routine_type
,
routine_name
FROM
information_schema
.
routines
WHERE
routine_schema
=
'test'
;
SELECT
event_name
,
status
FROM
information_schema
.
events
WHERE
event_schema
=
'test'
;
SELECT
table_name
FROM
information_schema
.
views
WHERE
table_schema
=
'test'
order
by
table_name
;
SELECT
trigger_name
,
event_manipulation
,
event_object_table
FROM
information_schema
.
triggers
WHERE
trigger_schema
=
'test'
order
by
trigger_name
;
SELECT
routine_type
,
routine_name
FROM
information_schema
.
routines
WHERE
routine_schema
=
'test'
order
by
routine_name
;
SELECT
event_name
,
status
FROM
information_schema
.
events
WHERE
event_schema
=
'test'
order
by
event_name
;
# Check replicated data
--
echo
...
...
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