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
4532a89f
Commit
4532a89f
authored
Jan 06, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into sergbook.mysql.com:/usr/home/serg/Abk/mysql-4.1
parents
1d6a4a54
574a2820
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
2 deletions
+20
-2
BUILD/compile-dist
BUILD/compile-dist
+1
-0
include/my_pthread.h
include/my_pthread.h
+2
-0
innobase/os/os0file.c
innobase/os/os0file.c
+15
-1
mysys/my_sleep.c
mysys/my_sleep.c
+2
-0
sql/sql_parse.cc
sql/sql_parse.cc
+0
-1
No files found.
BUILD/compile-dist
View file @
4532a89f
...
@@ -43,5 +43,6 @@ fi
...
@@ -43,5 +43,6 @@ fi
--with-berkeley-db
\
--with-berkeley-db
\
--with-innodb
\
--with-innodb
\
--enable-thread-safe-client
\
--enable-thread-safe-client
\
--with-extra-charsets
=
complex
\
--with-ndbcluster
--with-ndbcluster
make
make
include/my_pthread.h
View file @
4532a89f
...
@@ -631,6 +631,7 @@ extern int pthread_dummy(int);
...
@@ -631,6 +631,7 @@ extern int pthread_dummy(int);
/* All thread specific variables are in the following struct */
/* All thread specific variables are in the following struct */
#define THREAD_NAME_SIZE 10
#define THREAD_NAME_SIZE 10
#ifndef DEFAULT_THREAD_STACK
#if defined(__ia64__)
#if defined(__ia64__)
/*
/*
MySQL can survive with 32K, but some glibc libraries require > 128K stack
MySQL can survive with 32K, but some glibc libraries require > 128K stack
...
@@ -640,6 +641,7 @@ extern int pthread_dummy(int);
...
@@ -640,6 +641,7 @@ extern int pthread_dummy(int);
#else
#else
#define DEFAULT_THREAD_STACK (192*1024)
#define DEFAULT_THREAD_STACK (192*1024)
#endif
#endif
#endif
struct
st_my_thread_var
struct
st_my_thread_var
{
{
...
...
innobase/os/os0file.c
View file @
4532a89f
...
@@ -1763,7 +1763,21 @@ os_file_flush(
...
@@ -1763,7 +1763,21 @@ os_file_flush(
#else
#else
int
ret
;
int
ret
;
#ifdef HAVE_FDATASYNC
#ifdef HAVE_DARWIN_THREADS
/* Apple has disabled fsync() for internal disk drives in OS X. That
caused corruption for a user when he tested a power outage. Let us in
OS X use a nonstandard flush method recommended by an Apple
engineer. */
ret
=
fcntl
(
file
,
F_FULLFSYNC
,
NULL
);
if
(
ret
)
{
/* If we are not on a file system that supports this, then
fall back to a plain fsync. */
ret
=
fsync
(
file
);
}
#elif HAVE_FDATASYNC
ret
=
fdatasync
(
file
);
ret
=
fdatasync
(
file
);
#else
#else
/* fprintf(stderr, "Flushing to file %p\n", file); */
/* fprintf(stderr, "Flushing to file %p\n", file); */
...
...
mysys/my_sleep.c
View file @
4532a89f
...
@@ -23,6 +23,8 @@ void my_sleep(ulong m_seconds)
...
@@ -23,6 +23,8 @@ void my_sleep(ulong m_seconds)
{
{
#ifdef __NETWARE__
#ifdef __NETWARE__
delay
(
m_seconds
/
1000
+
1
);
delay
(
m_seconds
/
1000
+
1
);
#elif defined(__WIN__)
Sleep
(
m_seconds
/
1000
+
1
);
/* Sleep() has millisecond arg */
#elif defined(OS2)
#elif defined(OS2)
DosSleep
(
m_seconds
/
1000
+
1
);
DosSleep
(
m_seconds
/
1000
+
1
);
#elif defined(HAVE_SELECT)
#elif defined(HAVE_SELECT)
...
...
sql/sql_parse.cc
View file @
4532a89f
...
@@ -2429,7 +2429,6 @@ mysql_execute_command(THD *thd)
...
@@ -2429,7 +2429,6 @@ mysql_execute_command(THD *thd)
create_table_local
);
create_table_local
);
break
;
break
;
create_error:
res
=
1
;
//error reported
res
=
1
;
//error reported
unsent_create_error:
unsent_create_error:
// put tables back for PS rexecuting
// put tables back for PS rexecuting
...
...
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