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
dc81a3c7
Commit
dc81a3c7
authored
Feb 13, 2006
by
lars@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/users/lthalmann/bkroot/mysql-5.1-new
into mysql.com:/users/lthalmann/bk/mysql-5.1-new-bug17339
parents
24bbbf0b
0c6d1690
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
6 deletions
+29
-6
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-1
sql/ha_archive.cc
sql/ha_archive.cc
+8
-2
support-files/mysql.spec.sh
support-files/mysql.spec.sh
+21
-3
No files found.
mysql-test/t/disabled.def
View file @
dc81a3c7
...
...
@@ -10,7 +10,6 @@
#
##############################################################################
archive : Change between azio and gzio is causing an issue
events : Test case instability - infinite locking. To be fixed.
func_group : Bug#15448
func_math : Bug#15448
...
...
sql/ha_archive.cc
View file @
dc81a3c7
...
...
@@ -1237,10 +1237,16 @@ int ha_archive::optimize(THD* thd, HA_CHECK_OPT* check_opt)
azwrite
(
&
writer
,
block
,
read
);
}
az
flush
(
&
writer
,
Z_SYNC_FLUSH
);
az
close
(
&
writer
);
share
->
dirty
=
FALSE
;
azclose
(
&
(
share
->
archive_write
));
share
->
archive_write
=
writer
;
if
(
!
(
azopen
(
&
(
share
->
archive_write
),
share
->
data_file_name
,
O_WRONLY
|
O_APPEND
|
O_BINARY
)))
{
DBUG_PRINT
(
"info"
,
(
"Could not open archive write file"
));
rc
=
HA_ERR_CRASHED_ON_USAGE
;
goto
error
;
}
my_rename
(
writer_filename
,
share
->
data_file_name
,
MYF
(
0
));
...
...
support-files/mysql.spec.sh
View file @
dc81a3c7
...
...
@@ -304,7 +304,7 @@ then
cp
-fp
mysql-debug-%
{
mysql_version
}
/config.log
"
$MYSQL_DEBUGCONFLOG_DEST
"
fi
(
cd
mysql-debug-%
{
mysql_version
}
&&
make test-force
)
||
true
(
cd
mysql-debug-%
{
mysql_version
}
&&
make
-i
test-force
)
||
true
# Build release binary.
(
cd
mysql-release-%
{
mysql_version
}
&&
...
...
@@ -328,7 +328,7 @@ then
cp
-fp
mysql-release-%
{
mysql_version
}
/config.log
"
$MYSQL_CONFLOG_DEST
"
fi
(
cd
mysql-release-%
{
mysql_version
}
&&
make test-force
)
||
true
(
cd
mysql-release-%
{
mysql_version
}
&&
make
-i
test-force
)
||
true
%install
RBR
=
$RPM_BUILD_ROOT
...
...
@@ -648,7 +648,25 @@ fi
# itself - note that they must be ordered by date (important when
# merging BK trees)
%changelog
*
Fri Dec 12 2005 Rodrigo Novo <rodrigo@mysql.com>
*
Mon Feb 13 2006 Joerg Bruehe <joerg@mysql.com>
- Use
"-i"
on
"make test-force"
;
this is essential
for
later evaluation of this log file.
*
Thu Feb 09 2006 Kent Boortz <kent@mysql.com>
- Pass
'-static'
to libtool,
link
static with our own libraries, dynamic
with system libraries. Link with the bundled zlib.
*
Wed Feb 08 2006 Kristian Nielsen <knielsen@mysql.com>
- Modified RPM spec to match new 5.1 debug+max combined community packaging.
*
Sun Dec 18 2005 Kent Boortz <kent@mysql.com>
- Added
"client/mysqlslap"
*
Mon Dec 12 2005 Rodrigo Novo <rodrigo@mysql.com>
- Added zlib to the list of
(
static
)
libraries installed
- Added check against libtool wierdness
(
WRT: sql/mysqld
||
sql/.libs/mysqld
)
...
...
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