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
ef0416c1
Commit
ef0416c1
authored
Jan 28, 2010
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
automerge windows fixes.
parents
0d09e3a5
7c8983e9
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
29 additions
and
11 deletions
+29
-11
mysql-test/include/ps_conv.inc
mysql-test/include/ps_conv.inc
+3
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+6
-2
mysql-test/suite/binlog/r/binlog_unsafe.result
mysql-test/suite/binlog/r/binlog_unsafe.result
+1
-0
mysql-test/suite/binlog/t/binlog_unsafe.test
mysql-test/suite/binlog/t/binlog_unsafe.test
+1
-0
mysql-test/suite/maria/r/maria-recover.result
mysql-test/suite/maria/r/maria-recover.result
+0
-3
mysql-test/suite/maria/t/maria-recover.test
mysql-test/suite/maria/t/maria-recover.test
+7
-3
mysql-test/suite/parts/inc/partition_timestamp.inc
mysql-test/suite/parts/inc/partition_timestamp.inc
+1
-0
mysql-test/suite/parts/r/partition_recover_myisam.result
mysql-test/suite/parts/r/partition_recover_myisam.result
+0
-2
mysql-test/suite/parts/t/partition_recover_myisam.test
mysql-test/suite/parts/t/partition_recover_myisam.test
+3
-1
mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result
mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result
+1
-0
mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test
mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test
+1
-0
mysql-test/t/mysqlbinlog2-master.opt
mysql-test/t/mysqlbinlog2-master.opt
+1
-0
mysql-test/t/mysqlbinlog_row-master.opt
mysql-test/t/mysqlbinlog_row-master.opt
+1
-0
mysql-test/t/mysqlbinlog_row_innodb-master.opt
mysql-test/t/mysqlbinlog_row_innodb-master.opt
+1
-0
mysql-test/t/mysqlbinlog_row_myisam-master.opt
mysql-test/t/mysqlbinlog_row_myisam-master.opt
+1
-0
mysql-test/t/mysqlbinlog_row_trans-master.opt
mysql-test/t/mysqlbinlog_row_trans-master.opt
+1
-0
No files found.
mysql-test/include/ps_conv.inc
View file @
ef0416c1
...
...
@@ -30,6 +30,9 @@
--
disable_warnings
drop
table
if
exists
t5
;
--
enable_warnings
--
disable_query_log
SET
TIME_ZONE
=
'+03:00'
;
--
enable_query_log
set
@
arg01
=
8
;
set
@
arg02
=
8.0
;
set
@
arg03
=
80.00000000000e-1
;
...
...
mysql-test/mysql-test-run.pl
View file @
ef0416c1
...
...
@@ -3425,7 +3425,7 @@ sub restart_forced_by_test
# Return timezone value of tinfo or default value
sub
timezone
{
my
(
$tinfo
)
=
@_
;
return
$tinfo
->
{
timezone
}
||
"
GMT-3
";
return
$tinfo
->
{
timezone
}
||
"
DEFAULT
";
}
...
...
@@ -3455,7 +3455,11 @@ sub run_testcase ($$) {
# Init variables that can change between each test case
# -------------------------------------------------------
my
$timezone
=
timezone
(
$tinfo
);
$ENV
{'
TZ
'}
=
$timezone
;
if
(
$timezone
ne
'
DEFAULT
')
{
$ENV
{'
TZ
'}
=
$timezone
;
}
else
{
delete
(
$ENV
{'
TZ
'});
}
mtr_verbose
("
Setting timezone:
$timezone
");
if
(
!
using_extern
()
)
...
...
mysql-test/suite/binlog/r/binlog_unsafe.result
View file @
ef0416c1
...
...
@@ -380,6 +380,7 @@ INSERT INTO t1 VALUES (VERSION());
Warnings:
Note 1592 Statement may not be safe to log in statement format.
DELETE FROM t1;
SET TIME_ZONE= '+03:00';
SET TIMESTAMP=1000000;
INSERT INTO t1 VALUES
(CURDATE()),
...
...
mysql-test/suite/binlog/t/binlog_unsafe.test
View file @
ef0416c1
...
...
@@ -422,6 +422,7 @@ DELETE FROM t1;
# following following functions depend on the TIMESTAMP variable and
# don't generate a warning.
SET
TIME_ZONE
=
'+03:00'
;
SET
TIMESTAMP
=
1000000
;
INSERT
INTO
t1
VALUES
(
CURDATE
()),
...
...
mysql-test/suite/maria/r/maria-recover.result
View file @
ef0416c1
call mtr.add_suppression("Checking table: '.\/mysqltest\/t_corrupted2'");
call mtr.add_suppression("Recovering table: '.\/mysqltest\/t_corrupted2'");
call mtr.add_suppression("Table '.\/mysqltest\/t_corrupted2' is marked as crashed and should be repaired");
select @@global.maria_recover;
@@global.maria_recover
BACKUP
...
...
mysql-test/suite/maria/t/maria-recover.test
View file @
ef0416c1
...
...
@@ -2,9 +2,13 @@
--
source
include
/
have_maria
.
inc
call
mtr
.
add_suppression
(
"Checking table: '.\/mysqltest\/t_corrupted2'"
);
call
mtr
.
add_suppression
(
"Recovering table: '.\/mysqltest\/t_corrupted2'"
);
call
mtr
.
add_suppression
(
"Table '.\/mysqltest\/t_corrupted2' is marked as crashed and should be repaired"
);
--
disable_query_log
# Note: \\. matches a single period. We use '.' as directory separator to
# account for Unix and Windows variation.
call
mtr
.
add_suppression
(
"Checking table: '
\\
..mysqltest.t_corrupted2'"
);
call
mtr
.
add_suppression
(
"Recovering table: '
\\
..mysqltest.t_corrupted2'"
);
call
mtr
.
add_suppression
(
"Table '
\\
..mysqltest.t_corrupted2' is marked as crashed and should be repaired"
);
--
enable_query_log
# Note: we're setting an environment variable (not prefixing it by $),
# so that the perl code below can access it.
...
...
mysql-test/suite/parts/inc/partition_timestamp.inc
View file @
ef0416c1
...
...
@@ -48,6 +48,7 @@ show create table t3;
let
$count
=
12
;
--
echo
$count
inserts
;
--
disable_query_log
SET
TIME_ZONE
=
'+03:00'
;
begin
;
while
(
$count
)
{
...
...
mysql-test/suite/parts/r/partition_recover_myisam.result
View file @
ef0416c1
call mtr.add_suppression("./test/t1_will_crash");
call mtr.add_suppression("Got an error from unknown thread, ha_myisam.cc");
CREATE TABLE t1_will_crash (a INT, KEY (a)) ENGINE=MyISAM;
INSERT INTO t1_will_crash VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
FLUSH TABLES;
...
...
mysql-test/suite/parts/t/partition_recover_myisam.test
View file @
ef0416c1
# test the auto-recover (--myisam-recover) of partitioned myisam tables
call
mtr
.
add_suppression
(
"./test/t1_will_crash"
);
--
disable_query_log
call
mtr
.
add_suppression
(
"..test.t1_will_crash"
);
call
mtr
.
add_suppression
(
"Got an error from unknown thread, ha_myisam.cc"
);
--
enable_query_log
--
source
include
/
have_partition
.
inc
--
disable_warnings
...
...
mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result
View file @
ef0416c1
...
...
@@ -18,6 +18,7 @@ Server_id Host Port Rpl_recovery_rank Master_id
drop table t1;
stop slave;
create table t2(id int auto_increment primary key, created datetime);
SET TIME_ZONE= '+03:00';
set timestamp=12345;
insert into t2 set created=now();
select * from t2;
...
...
mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test
View file @
ef0416c1
...
...
@@ -23,6 +23,7 @@ connection master;
# Test replication of timestamp
create
table
t2
(
id
int
auto_increment
primary
key
,
created
datetime
);
SET
TIME_ZONE
=
'+03:00'
;
set
timestamp
=
12345
;
insert
into
t2
set
created
=
now
();
select
*
from
t2
;
...
...
mysql-test/t/mysqlbinlog2-master.opt
0 → 100644
View file @
ef0416c1
--timezone=GMT-3
mysql-test/t/mysqlbinlog_row-master.opt
0 → 100644
View file @
ef0416c1
--timezone=GMT-3
mysql-test/t/mysqlbinlog_row_innodb-master.opt
0 → 100644
View file @
ef0416c1
--timezone=GMT-3
mysql-test/t/mysqlbinlog_row_myisam-master.opt
0 → 100644
View file @
ef0416c1
--timezone=GMT-3
mysql-test/t/mysqlbinlog_row_trans-master.opt
0 → 100644
View file @
ef0416c1
--timezone=GMT-3
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