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
8b9fa728
Commit
8b9fa728
authored
Dec 22, 2000
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
8f51a9f1
06b0f815
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
65 additions
and
59 deletions
+65
-59
BitKeeper/etc/gone
BitKeeper/etc/gone
+1
-1
client/mysqltest.c
client/mysqltest.c
+56
-56
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+3
-2
mysql-test/r/mrg000002.result
mysql-test/r/mrg000002.result
+1
-0
mysql-test/t/mrg000001.test
mysql-test/t/mrg000001.test
+4
-0
No files found.
BitKeeper/etc/gone
View file @
8b9fa728
...
...
@@ -281,6 +281,7 @@ mwagner@work.mysql.com|mysql-test/r/3.23/sel000002.result|20001010091454|29230|d
sasha@mysql.sashanet.com|BitKeeper/etc/logging_ok|20000801000905|12967|5b7d847a2158554
sasha@mysql.sashanet.com|libmysql_r/acconfig.h|20001128060846|51084|65f1202b3b5c345f
sasha@mysql.sashanet.com|mysql-test/README.gcov|20001012045950|28177|5a6da067a30780ce
sasha@mysql.sashanet.com|mysql-test/README.gcov|20001214012355|41825|2de7575ca81155e5
sasha@mysql.sashanet.com|mysql-test/README|20001010001022|12739|108667adaeabe3f5
sasha@mysql.sashanet.com|mysql-test/r/3.23/alt000001.result|20001122072330|24729|393103dbf15f35c9
sasha@mysql.sashanet.com|mysql-test/r/3.23/ins000001.result|20001018175743|49824|f45c599efdf8352b
...
...
@@ -328,4 +329,3 @@ serg@serg.mysql.com|mysql-test/r/ft0000002.c.result|20001212120059|07173|cd66b90
serg@serg.mysql.com|mysql-test/r/sel000031.result|20001211130803|03576|d49aeac63ad7db4d
serg@serg.mysql.com|mysql-test/r/sel000032.result|20001211130803|08537|6cb30e23cbca9fb0
serg@serg.mysql.com|mysql-test/r/sel000033.result|20001211130803|13548|56d1d02d72b94602
sasha@mysql.sashanet.com|mysql-test/README.gcov|20001214012355|41825|2de7575ca81155e5
client/mysqltest.c
View file @
8b9fa728
...
...
@@ -1147,7 +1147,7 @@ int run_query(MYSQL* mysql, struct query* q)
if
(
!
result_file
)
str_to_file
(
q
->
record_file
,
ds
->
str
,
ds
->
len
);
}
else
if
(
!
result_file
&&
q
->
record_file
[
0
])
else
if
(
q
->
record_file
[
0
])
{
error
=
check_result
(
ds
,
q
->
record_file
);
}
...
...
mysql-test/mysql-test-run.sh
View file @
8b9fa728
...
...
@@ -327,7 +327,7 @@ stop_slave ()
if
[
-f
$SLAVE_MYPID
]
;
then
echo
"slave refused to die, resorting to SIGKILL murder"
kill
-9
`
cat
$SLAVE_MYPID
`
rm
-f
$SLAVE_MYPID
$RM
-f
$SLAVE_MYPID
else
echo
"slave responded to SIGTERM "
fi
...
...
@@ -348,7 +348,7 @@ stop_master ()
if
[
-f
$MASTER_MYPID
]
;
then
echo
"master refused to die, resorting to SIGKILL murder"
kill
-9
`
cat
$MASTER_MYPID
`
rm
-f
$MASTER_MYPID
$RM
-f
$MASTER_MYPID
else
echo
"master responded to SIGTERM "
fi
...
...
@@ -438,6 +438,7 @@ run_testcase ()
cd
$MYSQL_TEST_DIR
if
[
-f
$tf
]
;
then
$RM
-f
r/
$tname
.
*
.reject
mytime
=
`
$TIME
-p
$MYSQL_TEST
-R
r/
$tname
.result
$extra_flags
\
<
$tf
2>
$TIMEFILE
`
res
=
$?
...
...
mysql-test/r/mrg000002.result
View file @
8b9fa728
c
mysql-test/t/mrg000001.test
View file @
8b9fa728
...
...
@@ -15,3 +15,7 @@ INSERT INTO test1 VALUES (11,20),(13,43),(15,11),(17,22),(19,37);
INSERT
INTO
test2
VALUES
(
12
,
25
),(
14
,
31
),(
16
,
42
),(
18
,
27
),(
10
,
30
);
@
r
/
mrg000001
.
result
SELECT
*
from
test3
where
incr
in
(
1
,
2
,
3
,
4
)
order
by
othr
;
DROP
TABLE
IF
EXISTS
test3
;
DROP
TABLE
IF
EXISTS
test1
;
DROP
TABLE
IF
EXISTS
test2
;
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