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
a01a3dd5
Commit
a01a3dd5
authored
Feb 19, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into mysql.com:/home/my/mysql-4.0
parents
6c1795ee
4e01d4de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
include/config-win.h
include/config-win.h
+1
-1
sql/sql_load.cc
sql/sql_load.cc
+5
-1
sql/unireg.cc
sql/unireg.cc
+3
-1
No files found.
include/config-win.h
View file @
a01a3dd5
...
@@ -316,7 +316,7 @@ inline double ulonglong2double(ulonglong value)
...
@@ -316,7 +316,7 @@ inline double ulonglong2double(ulonglong value)
#define FN_ROOTDIR "\\"
#define FN_ROOTDIR "\\"
#define FN_NETWORK_DRIVES
/* Uses \\ to indicate network drives */
#define FN_NETWORK_DRIVES
/* Uses \\ to indicate network drives */
#define FN_NO_CASE_SENCE
/* Files are not case-sensitive */
#define FN_NO_CASE_SENCE
/* Files are not case-sensitive */
#define MY_NFILE
1024
#define MY_NFILE
2048
#define DO_NOT_REMOVE_THREAD_WRAPPERS
#define DO_NOT_REMOVE_THREAD_WRAPPERS
#define thread_safe_increment(V,L) InterlockedIncrement((long*) &(V))
#define thread_safe_increment(V,L) InterlockedIncrement((long*) &(V))
...
...
sql/sql_load.cc
View file @
a01a3dd5
...
@@ -91,7 +91,11 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list,
...
@@ -91,7 +91,11 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list,
bool
is_fifo
=
0
;
bool
is_fifo
=
0
;
LOAD_FILE_INFO
lf_info
;
LOAD_FILE_INFO
lf_info
;
char
*
db
=
table_list
->
db
;
// This is never null
char
*
db
=
table_list
->
db
;
// This is never null
/* If no current database, use database where table is located */
/*
If path for file is not defined, we will use the current database.
If this is not set, we will use the directory where the table to be
loaded is located
*/
char
*
tdb
=
thd
->
db
?
thd
->
db
:
db
;
// Result is never null
char
*
tdb
=
thd
->
db
?
thd
->
db
:
db
;
// Result is never null
bool
transactional_table
,
log_delayed
;
bool
transactional_table
,
log_delayed
;
ulong
skip_lines
=
ex
->
skip_lines
;
ulong
skip_lines
=
ex
->
skip_lines
;
...
...
sql/unireg.cc
View file @
a01a3dd5
...
@@ -150,7 +150,9 @@ int rea_create_table(my_string file_name,
...
@@ -150,7 +150,9 @@ int rea_create_table(my_string file_name,
my_free
((
gptr
)
screen_buff
,
MYF
(
0
));
my_free
((
gptr
)
screen_buff
,
MYF
(
0
));
my_afree
((
gptr
)
keybuff
);
my_afree
((
gptr
)
keybuff
);
if
(
opt_sync_frm
&&
my_sync
(
file
,
MYF
(
MY_WME
)))
if
(
opt_sync_frm
&&
!
(
create_info
->
options
&
HA_LEX_CREATE_TMP_TABLE
)
&&
my_sync
(
file
,
MYF
(
MY_WME
)))
goto
err2
;
goto
err2
;
if
(
my_close
(
file
,
MYF
(
MY_WME
))
||
if
(
my_close
(
file
,
MYF
(
MY_WME
))
||
ha_create_table
(
file_name
,
create_info
,
0
))
ha_create_table
(
file_name
,
create_info
,
0
))
...
...
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