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
be7f1a35
Commit
be7f1a35
authored
May 28, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
merge with 4.0 to get fix for hpux
parents
297be710
33dcccb5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
4 deletions
+11
-4
configure.in
configure.in
+3
-0
include/config-netware.h
include/config-netware.h
+4
-0
innobase/os/os0file.c
innobase/os/os0file.c
+2
-2
mysql-test/r/variables.result
mysql-test/r/variables.result
+1
-2
mysql-test/t/variables.test
mysql-test/t/variables.test
+1
-0
No files found.
configure.in
View file @
be7f1a35
...
...
@@ -2657,6 +2657,9 @@ AC_SUBST(netware_dir)
AC_SUBST
(
linked_netware_sources
)
AM_CONDITIONAL
(
HAVE_NETWARE,
test
"
$netware_dir
"
=
"netware"
)
# Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS
export
CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR
if
test
"
$with_server
"
=
"yes"
-o
"
$THREAD_SAFE_CLIENT
"
!=
"no"
then
AC_DEFINE
(
THREAD
)
...
...
include/config-netware.h
View file @
be7f1a35
...
...
@@ -57,6 +57,10 @@ extern "C" {
#undef HAVE_CRYPT
#endif
/* HAVE_OPENSSL */
/* Configure can't detect this because it uses AC_TRY_RUN */
#undef HAVE_COMPRESS
#define HAVE_COMPRESS
/* include the old function apis */
#define USE_OLD_FUNCTIONS 1
...
...
innobase/os/os0file.c
View file @
be7f1a35
...
...
@@ -1740,7 +1740,7 @@ os_file_pread(
os_n_file_reads
++
;
#if
def HAVE_PREAD
#if
defined(HAVE_PREAD) && !defined(HAVE_BROKEN_PREAD)
os_mutex_enter
(
os_file_count_mutex
);
os_file_n_pending_preads
++
;
os_mutex_exit
(
os_file_count_mutex
);
...
...
@@ -1815,7 +1815,7 @@ os_file_pwrite(
os_n_file_writes
++
;
#if
def HAVE_PWRITE
#if
defined(HAVE_PWRITE) && !defined(HAVE_BROKEN_PREAD)
os_mutex_enter
(
os_file_count_mutex
);
os_file_n_pending_pwrites
++
;
os_mutex_exit
(
os_file_count_mutex
);
...
...
mysql-test/r/variables.result
View file @
be7f1a35
...
...
@@ -385,7 +385,6 @@ select 1;
1
1
select @@session.key_buffer_size;
ERROR HY000: Variable 'key_buffer_size' is a GLOBAL variable
set ft_boolean_syntax = @@init_connect;
ERROR HY000: Variable 'ft_boolean_syntax' is a GLOBAL variable and should be set with SET GLOBAL
set global ft_boolean_syntax = @@init_connect;
...
...
@@ -400,7 +399,7 @@ ERROR 42000: Variable 'ft_boolean_syntax' can't be set to the value of ''
set global myisam_max_sort_file_size=4294967296;
show global variables like 'myisam_max_sort_file_size';
Variable_name Value
myisam_max_sort_file_size
4294967296
myisam_max_sort_file_size
MAX_FILE_SIZE
set global myisam_max_sort_file_size=default;
select @@global.max_user_connections,@@local.max_join_size;
@@global.max_user_connections @@session.max_join_size
...
...
mysql-test/t/variables.test
View file @
be7f1a35
...
...
@@ -291,6 +291,7 @@ set global ft_boolean_syntax = @@init_connect;
# variables are set
set
global
myisam_max_sort_file_size
=
4294967296
;
--
replace_result
4294967296
MAX_FILE_SIZE
2146435072
MAX_FILE_SIZE
show
global
variables
like
'myisam_max_sort_file_size'
;
set
global
myisam_max_sort_file_size
=
default
;
...
...
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