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
51076279
Commit
51076279
authored
Mar 22, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge
Docs/manual.texi: SCCS merged
parents
c0a5e470
a333c33f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
19 deletions
+13
-19
Docs/manual.texi
Docs/manual.texi
+3
-0
client/mysql.cc
client/mysql.cc
+0
-11
configure.in
configure.in
+5
-3
sql/log_event.h
sql/log_event.h
+3
-2
sql/sql_load.cc
sql/sql_load.cc
+2
-3
No files found.
Docs/manual.texi
View file @
51076279
...
...
@@ -46897,6 +46897,9 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.50
@itemize @bullet
@item
Fixed core-dump bug when using @code{--log-bin} with @code{LOAD DATA
INFILE} without an active database.
@item
Fixed bug in @code{RENAME TABLE} when used with
@code{lower_case_table_names=1} (default on Windows).
@item
client/mysql.cc
View file @
51076279
...
...
@@ -764,17 +764,6 @@ static int get_options(int argc, char **argv)
return
(
0
);
}
#if defined(OS2)
static
char
*
readline
(
char
*
prompt
)
{
#if defined(OS2)
static
char
linebuffer
[
254
];
#endif
puts
(
prompt
);
return
gets
(
linebuffer
);
}
#endif
static
int
read_lines
(
bool
execute_commands
)
{
#if defined( __WIN__) || defined(OS2)
...
...
configure.in
View file @
51076279
...
...
@@ -647,9 +647,11 @@ AC_CHECK_HEADERS(fcntl.h float.h floatingpoint.h ieeefp.h limits.h \
#--------------------------------------------------------------------
AC_CHECK_LIB
(
m, floor,
[]
, AC_CHECK_LIB
(
m, __infinity
))
AC_CHECK_FUNC
(
gethostbyname_r,
[]
,
[
AC_CHECK_LIB
(
nsl_r, gethostbyname_r,
[]
,
AC_CHECK_LIB
(
nsl, gethostbyname_r
))])
AC_CHECK_LIB
(
nsl_r, gethostbyname_r,
[]
,
AC_CHECK_LIB
(
nsl, gethostbyname_r
))
AC_CHECK_FUNC
(
gethostbyname_r
)
AC_CHECK_FUNC
(
setsockopt, , AC_CHECK_LIB
(
socket, setsockopt
))
AC_CHECK_FUNC
(
yp_get_default_domain, ,
AC_CHECK_LIB
(
nsl, yp_get_default_domain
))
...
...
sql/log_event.h
View file @
51076279
...
...
@@ -229,12 +229,13 @@ public:
THD
*
thd
;
String
field_lens_buf
;
String
fields_buf
;
Load_log_event
(
THD
*
thd
,
sql_exchange
*
ex
,
const
char
*
table_name_arg
,
Load_log_event
(
THD
*
thd
,
sql_exchange
*
ex
,
const
char
*
db_arg
,
const
char
*
table_name_arg
,
List
<
Item
>&
fields_arg
,
enum
enum_duplicates
handle_dup
)
:
Log_event
(
thd
->
start_time
),
data_buf
(
0
),
thread_id
(
thd
->
thread_id
),
num_fields
(
0
),
fields
(
0
),
field_lens
(
0
),
field_block_len
(
0
),
table_name
(
table_name_arg
),
db
(
thd
->
db
),
db
(
db_arg
),
fname
(
ex
->
file_name
),
thd
(
thd
)
{
...
...
sql/sql_load.cc
View file @
51076279
...
...
@@ -72,7 +72,6 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list,
*
enclosed
=
ex
->
enclosed
;
bool
is_fifo
=
0
;
bool
using_transactions
;
DBUG_ENTER
(
"mysql_load"
);
if
(
escaped
->
length
()
>
1
||
enclosed
->
length
()
>
1
)
...
...
@@ -260,8 +259,8 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list,
if
(
!
read_file_from_client
&&
mysql_bin_log
.
is_open
())
{
ex
->
skip_lines
=
save_skip_lines
;
Load_log_event
qinfo
(
thd
,
ex
,
table
->
table_
name
,
fields
,
handle_duplicates
);
Load_log_event
qinfo
(
thd
,
ex
,
table
->
table_
cache_key
,
table
->
table_name
,
fields
,
handle_duplicates
);
mysql_bin_log
.
write
(
&
qinfo
);
}
if
(
using_transactions
)
...
...
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