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
e2d7efb2
Commit
e2d7efb2
authored
May 15, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/Users/kent/mysql/bk/mysql-4.1
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
parents
bd70ce72
f37bdbe0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
mysql-test/lib/init_db.sql
mysql-test/lib/init_db.sql
+3
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+4
-4
No files found.
mysql-test/lib/init_db.sql
View file @
e2d7efb2
USE
mysql
;
use
mysql
;
set
table_type
=
myisam
;
CREATE
TABLE
db
(
Host
char
(
60
)
binary
DEFAULT
''
NOT
NULL
,
...
...
@@ -206,7 +207,7 @@ INSERT INTO time_zone_name (Name, Time_Zone_id) VALUES
CREATE
TABLE
time_zone
(
Time_zone_id
int
unsigned
NOT
NULL
auto_increment
,
Use_leap_seconds
enum
(
'Y'
,
'N'
)
DEFAULT
'N'
NOT
NULL
,
Use_leap_seconds
enum
(
'Y'
,
'N'
)
COLLATE
utf8_general_ci
DEFAULT
'N'
NOT
NULL
,
PRIMARY
KEY
TzId
(
Time_zone_id
)
)
engine
=
MyISAM
CHARACTER
SET
utf8
...
...
mysql-test/mysql-test-run.pl
View file @
e2d7efb2
...
...
@@ -1494,15 +1494,15 @@ sub run_testcase ($) {
{
mtr_report_test_passed
(
$tinfo
);
}
elsif
(
$res
==
2
)
elsif
(
$res
==
6
2
)
{
# Testcase itself tell us to skip this one
mtr_report_test_skipped
(
$tinfo
);
}
else
{
# Test case failed
if
(
$res
>
2
)
# Test case failed
, if in control mysqltest returns 1
if
(
$res
!=
1
)
{
mtr_tofile
(
$path_timefile
,
"
mysqltest returned unexpected code
$res
,
"
.
...
...
@@ -2126,7 +2126,7 @@ sub run_mysqltest ($$) {
mysqld_arguments
(
$args
,'
master
',
0
,
$tinfo
->
{'
master_opt
'},
[]
);
}
return
mtr_run_test
(
$exe
_mysqltest
,
$args
,
$tinfo
->
{'
path
'},"",
$path_timefile
,"");
return
mtr_run_test
(
$exe
,
$args
,
$tinfo
->
{'
path
'},"",
$path_timefile
,"");
}
##############################################################################
...
...
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