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
d5cac14e
Commit
d5cac14e
authored
Dec 01, 2009
by
Paul McCullagh
Browse files
Options
Browse Files
Download
Plain Diff
Merged with MariaDB trunk
parents
4ba94920
a0c440b2
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
30 additions
and
41 deletions
+30
-41
client/mysql.cc
client/mysql.cc
+2
-3
include/mysys_err.h
include/mysys_err.h
+3
-2
mysys/errors.c
mysys/errors.c
+2
-0
mysys/my_seek.c
mysys/my_seek.c
+11
-5
mysys/thr_mutex.c
mysys/thr_mutex.c
+5
-26
sql/log_event.cc
sql/log_event.cc
+4
-4
sql/sql_insert.cc
sql/sql_insert.cc
+2
-0
storage/maria/ha_maria.cc
storage/maria/ha_maria.cc
+1
-1
No files found.
client/mysql.cc
View file @
d5cac14e
...
...
@@ -83,7 +83,7 @@ extern "C" {
#include <term.h>
#endif
#endif
#endif
#endif
/* defined(HAVE_CURSES_H) && defined(HAVE_TERM_H) */
#undef bcmp // Fix problem with new readline
#if defined(__WIN__)
...
...
@@ -92,7 +92,6 @@ extern "C" {
#include <readline/readline.h>
#define HAVE_READLINE
#endif
//int vidattr(long unsigned int attrs); // Was missing in sun curses
}
#if !defined(HAVE_VIDATTR)
...
...
@@ -1024,7 +1023,7 @@ static const char *load_default_groups[]= { "mysql","client",0 };
static
int
embedded_server_arg_count
=
0
;
static
char
*
embedded_server_args
[
MAX_SERVER_ARGS
];
static
const
char
*
embedded_server_groups
[]
=
{
"server"
,
"embedded"
,
"mysql_SERVER"
,
0
};
{
"server"
,
"embedded"
,
"mysql_SERVER"
,
"mariadb_SERVER"
,
0
};
#ifdef HAVE_READLINE
/*
...
...
include/mysys_err.h
View file @
d5cac14e
...
...
@@ -63,8 +63,9 @@ extern const char * NEAR globerrs[]; /* my_error_messages is here */
#define EE_FILENOTFOUND 29
#define EE_FILE_NOT_CLOSED 30
#define EE_CANT_CHMOD 31
#define EE_CANT_COPY_OWNERSHIP 32
#define EE_ERROR_LAST 32
/* Copy last error nr */
#define EE_CANT_SEEK 32
#define EE_CANT_COPY_OWNERSHIP 33
#define EE_ERROR_LAST 33
/* Copy last error nr */
/* Add error numbers before EE_ERROR_LAST and change it accordingly. */
/* exit codes for all MySQL programs */
...
...
mysys/errors.c
View file @
d5cac14e
...
...
@@ -51,6 +51,7 @@ const char * NEAR globerrs[GLOBERRS]=
"File '%s' not found (Errcode: %d)"
,
"File '%s' (fileno: %d) was not closed"
,
"Can't change mode for file '%s' to 0x%lx (Error: %d)"
,
"Can't do seek on file '%s' (Errcode: %d)"
,
"Warning: Can't copy ownership for file '%s' (Error: %d)"
};
...
...
@@ -93,6 +94,7 @@ void init_glob_errs()
EE
(
EE_FILENOTFOUND
)
=
"File '%s' not found (Errcode: %d)"
;
EE
(
EE_FILE_NOT_CLOSED
)
=
"File '%s' (fileno: %d) was not closed"
;
EE
(
EE_CANT_CHMOD
)
=
"Can't change mode for file '%s' to 0x%lx (Error: %d)"
;
EE
(
EE_CANT_SEEK
)
=
"Can't do seek on file '%s' (Errcode: %d)"
;
EE
(
EE_CANT_COPY_OWNERSHIP
)
=
"Warning: Can't copy ownership for file '%s' (Error: %d)"
;
}
#endif
...
...
mysys/my_seek.c
View file @
d5cac14e
...
...
@@ -14,6 +14,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "mysys_priv.h"
#include "mysys_err.h"
/*
Seek to a position in a file.
...
...
@@ -42,8 +43,7 @@
actual error.
*/
my_off_t
my_seek
(
File
fd
,
my_off_t
pos
,
int
whence
,
myf
MyFlags
__attribute__
((
unused
)))
my_off_t
my_seek
(
File
fd
,
my_off_t
pos
,
int
whence
,
myf
MyFlags
)
{
reg1
os_off_t
newpos
=
-
1
;
DBUG_ENTER
(
"my_seek"
);
...
...
@@ -68,7 +68,9 @@ my_off_t my_seek(File fd, my_off_t pos, int whence,
newpos
=
lseek
(
fd
,
pos
,
whence
);
if
(
newpos
==
(
os_off_t
)
-
1
)
{
my_errno
=
errno
;
my_errno
=
errno
;
if
(
MyFlags
&
MY_WME
)
my_error
(
EE_CANT_SEEK
,
MYF
(
0
),
my_filename
(
fd
),
my_errno
);
DBUG_PRINT
(
"error"
,(
"lseek: %lu errno: %d"
,
(
ulong
)
newpos
,
errno
));
DBUG_RETURN
(
MY_FILEPOS_ERROR
);
}
...
...
@@ -83,7 +85,7 @@ my_off_t my_seek(File fd, my_off_t pos, int whence,
/* Tell current position of file */
/* ARGSUSED */
my_off_t
my_tell
(
File
fd
,
myf
MyFlags
__attribute__
((
unused
))
)
my_off_t
my_tell
(
File
fd
,
myf
MyFlags
)
{
os_off_t
pos
;
DBUG_ENTER
(
"my_tell"
);
...
...
@@ -95,7 +97,11 @@ my_off_t my_tell(File fd, myf MyFlags __attribute__((unused)))
pos
=
lseek
(
fd
,
0L
,
MY_SEEK_CUR
);
#endif
if
(
pos
==
(
os_off_t
)
-
1
)
my_errno
=
errno
;
{
my_errno
=
errno
;
if
(
MyFlags
&
MY_WME
)
my_error
(
EE_CANT_SEEK
,
MYF
(
0
),
my_filename
(
fd
),
my_errno
);
}
DBUG_PRINT
(
"exit"
,(
"pos: %lu"
,
(
ulong
)
pos
));
DBUG_RETURN
((
my_off_t
)
pos
);
}
/* my_tell */
mysys/thr_mutex.c
View file @
d5cac14e
...
...
@@ -36,6 +36,7 @@
#undef pthread_mutex_init
#undef pthread_mutex_lock
#undef pthread_mutex_unlock
#undef pthread_mutex_trylock
#undef pthread_mutex_destroy
#undef pthread_cond_wait
#undef pthread_cond_timedwait
...
...
@@ -838,31 +839,9 @@ static void print_deadlock_warning(safe_mutex_t *new_mutex,
DBUG_VOID_RETURN
;
}
#elif defined(MY_PTHREAD_FASTMUTEX)
#endif
/* THREAD && SAFE_MUTEX */
#if defined(THREAD) && defined(MY_PTHREAD_FASTMUTEX) && !defined(SAFE_MUTEX)
#include "mysys_priv.h"
#include "my_static.h"
#include <m_string.h>
#include <m_ctype.h>
#include <hash.h>
#include <myisampack.h>
#include <mysys_err.h>
#include <my_sys.h>
#undef pthread_mutex_t
#undef pthread_mutex_init
#undef pthread_mutex_lock
#undef pthread_mutex_trylock
#undef pthread_mutex_unlock
#undef pthread_mutex_destroy
#undef pthread_cond_wait
#undef pthread_cond_timedwait
ulong
mutex_delay
(
ulong
delayloops
)
static
ulong
mutex_delay
(
ulong
delayloops
)
{
ulong
i
;
volatile
ulong
j
;
...
...
@@ -944,5 +923,5 @@ void fastmutex_global_init(void)
#endif
}
#endif
/*
SAFE_MUTEX_DEFINED
*/
#endif
/*
defined(MY_PTHREAD_FASTMUTEX)
*/
#endif
/* THREAD */
sql/log_event.cc
View file @
d5cac14e
...
...
@@ -2133,8 +2133,8 @@ void Query_log_event::pack_info(Protocol *protocol)
/**
Utility function for the next method (Query_log_event::write()) .
*/
static
void
write_str_with_code_and_len
(
char
**
dst
,
const
char
*
src
,
int
len
,
uint
code
)
static
void
write_str_with_code_and_len
(
u
char
**
dst
,
const
char
*
src
,
u
int
len
,
uint
code
)
{
/*
only 1 byte to store the length of catalog, so it should not
...
...
@@ -2229,7 +2229,7 @@ bool Query_log_event::write(IO_CACHE* file)
}
if
(
catalog_len
)
// i.e. this var is inited (false for 4.0 events)
{
write_str_with_code_and_len
(
(
char
**
)(
&
start
)
,
write_str_with_code_and_len
(
&
start
,
catalog
,
catalog_len
,
Q_CATALOG_NZ_CODE
);
/*
In 5.0.x where x<4 masters we used to store the end zero here. This was
...
...
@@ -2267,7 +2267,7 @@ bool Query_log_event::write(IO_CACHE* file)
{
/* In the TZ sys table, column Name is of length 64 so this should be ok */
DBUG_ASSERT
(
time_zone_len
<=
MAX_TIME_ZONE_NAME_LENGTH
);
write_str_with_code_and_len
(
(
char
**
)(
&
start
)
,
write_str_with_code_and_len
(
&
start
,
time_zone_str
,
time_zone_len
,
Q_TIME_ZONE_CODE
);
}
if
(
lc_time_names_number
)
...
...
sql/sql_insert.cc
View file @
d5cac14e
...
...
@@ -3437,10 +3437,12 @@ static TABLE *create_table_from_items(THD *thd, HA_CREATE_INFO *create_info,
Create_field
*
cr_field
;
Field
*
field
,
*
def_field
;
if
(
item
->
type
()
==
Item
::
FUNC_ITEM
)
{
if
(
item
->
result_type
()
!=
STRING_RESULT
)
field
=
item
->
tmp_table_field
(
&
tmp_table
);
else
field
=
item
->
tmp_table_field_from_field_type
(
&
tmp_table
,
0
);
}
else
field
=
create_tmp_field
(
thd
,
&
tmp_table
,
item
,
item
->
type
(),
(
Item
***
)
0
,
&
tmp_field
,
&
def_field
,
0
,
0
,
0
,
0
,
...
...
storage/maria/ha_maria.cc
View file @
d5cac14e
...
...
@@ -3341,7 +3341,7 @@ mysql_declare_plugin(maria)
MYSQL_STORAGE_ENGINE_PLUGIN
,
&
maria_storage_engine
,
"MARIA"
,
"M
ySQL AB
"
,
"M
onty Program Ab
"
,
"Crash-safe tables with MyISAM heritage"
,
PLUGIN_LICENSE_GPL
,
ha_maria_init
,
/* Plugin Init */
...
...
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