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
06c80870
Commit
06c80870
authored
Jul 09, 2007
by
tsmith@sita.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into sita.local:/Users/tsmith/m/bk/maint/50
parents
1e0d8099
4b1da38b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
20 deletions
+22
-20
mysql-test/r/rpl_misc_functions.result
mysql-test/r/rpl_misc_functions.result
+10
-9
mysql-test/t/rpl_misc_functions.test
mysql-test/t/rpl_misc_functions.test
+12
-11
No files found.
mysql-test/r/rpl_misc_functions.result
View file @
06c80870
...
...
@@ -20,11 +20,12 @@ select * from t1, t2 where (t1.id=t2.id) and not(t1.i=t2.i and t1.r1=t2.r1 and t
id i r1 r2 p id i r1 r2 p
drop table t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (col_a double default NULL);
CREATE TABLE t1 (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
col_a DOUBLE DEFAULT NULL);
CREATE PROCEDURE test_replication_sp1()
BEGIN
INSERT INTO t1 VALUES (rand()), (rand());
INSERT INTO t1 VALUES (rand());
INSERT INTO t1
(col_a)
VALUES (rand()), (rand());
INSERT INTO t1
(col_a)
VALUES (rand());
END|
CREATE PROCEDURE test_replication_sp2()
BEGIN
...
...
@@ -37,18 +38,18 @@ RETURN (rand() + rand());
END|
CALL test_replication_sp1();
CALL test_replication_sp2();
INSERT INTO t1 VALUES (test_replication_sf());
INSERT INTO t1 VALUES (test_replication_sf());
INSERT INTO t1 VALUES (test_replication_sf());
INSERT INTO t1
(col_a)
VALUES (test_replication_sf());
INSERT INTO t1
(col_a)
VALUES (test_replication_sf());
INSERT INTO t1
(col_a)
VALUES (test_replication_sf());
select * from t1 into outfile "../tmp/t1_slave.txt";
create temporary table t1_slave select * from t1 where 1=0;
load data infile '../tmp/t1_slave.txt' into table t1_slave;
select count(*) into @aux from t1
, t1_slave
where ABS(t1.col_a - t1_slave.col_a) < 0.0001 ;
select count(*) into @aux from t1
join t1_slave using (id)
where ABS(t1.col_a - t1_slave.col_a) < 0.000
000
1 ;
SELECT @aux;
@aux
12
DROP TABLE t1, t1_slave;
DROP PROCEDURE test_replication_sp1;
DROP PROCEDURE test_replication_sp2;
DROP FUNCTION test_replication_sf;
DROP TABLE t1, t1_slave;
mysql-test/t/rpl_misc_functions.test
View file @
06c80870
...
...
@@ -43,15 +43,16 @@ drop table t1;
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
CREATE
TABLE
t1
(
col_a
double
default
NULL
);
CREATE
TABLE
t1
(
id
INT
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
col_a
DOUBLE
DEFAULT
NULL
);
DELIMITER
|
;
# Use a SP that calls rand() multiple times
CREATE
PROCEDURE
test_replication_sp1
()
BEGIN
INSERT
INTO
t1
VALUES
(
rand
()),
(
rand
());
INSERT
INTO
t1
VALUES
(
rand
());
INSERT
INTO
t1
(
col_a
)
VALUES
(
rand
()),
(
rand
());
INSERT
INTO
t1
(
col_a
)
VALUES
(
rand
());
END
|
# Use a SP that calls another SP to call rand() multiple times
...
...
@@ -73,9 +74,9 @@ DELIMITER ;|
# the master to those on the slave.
CALL
test_replication_sp1
();
CALL
test_replication_sp2
();
INSERT
INTO
t1
VALUES
(
test_replication_sf
());
INSERT
INTO
t1
VALUES
(
test_replication_sf
());
INSERT
INTO
t1
VALUES
(
test_replication_sf
());
INSERT
INTO
t1
(
col_a
)
VALUES
(
test_replication_sf
());
INSERT
INTO
t1
(
col_a
)
VALUES
(
test_replication_sf
());
INSERT
INTO
t1
(
col_a
)
VALUES
(
test_replication_sf
());
--
sync_slave_with_master
...
...
@@ -90,24 +91,24 @@ load data infile '../tmp/t1_slave.txt' into table t1_slave;
# Compare master and slave temp table, use subtraction
# for floating point comparison of "double"
select
count
(
*
)
into
@
aux
from
t1
,
t1_slave
where
ABS
(
t1
.
col_a
-
t1_slave
.
col_a
)
<
0.0001
;
select
count
(
*
)
into
@
aux
from
t1
join
t1_slave
using
(
id
)
where
ABS
(
t1
.
col_a
-
t1_slave
.
col_a
)
<
0.000
000
1
;
SELECT
@
aux
;
if
(
`SELECT @aux <> 12 OR @aux IS NULL`
)
{
--
echo
# ERROR: We expected to get count(*) = 12.
SELECT
col_a
FROM
t1
;
SELECT
col_a
FROM
t1_slave
;
SELECT
id
,
col_a
FROM
t1
;
SELECT
id
,
col_a
FROM
t1_slave
;
--
echo
# abort
exit
;
}
# Cleanup
connection
master
;
DROP
TABLE
t1
,
t1_slave
;
DROP
PROCEDURE
test_replication_sp1
;
DROP
PROCEDURE
test_replication_sp2
;
DROP
FUNCTION
test_replication_sf
;
DROP
TABLE
t1
,
t1_slave
;
--
sync_slave_with_master
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