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
9240144b
Commit
9240144b
authored
Feb 02, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0
parents
2ae812a7
d5c03608
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
57 deletions
+14
-57
sql/ha_federated.cc
sql/ha_federated.cc
+11
-11
sql/mysql_priv.h
sql/mysql_priv.h
+0
-1
sql/sql_analyse.cc
sql/sql_analyse.cc
+0
-37
sql/sql_insert.cc
sql/sql_insert.cc
+3
-8
No files found.
sql/ha_federated.cc
View file @
9240144b
...
@@ -586,16 +586,13 @@ uint ha_federated::convert_row_to_internal_format(byte *record, MYSQL_ROW row)
...
@@ -586,16 +586,13 @@ uint ha_federated::convert_row_to_internal_format(byte *record, MYSQL_ROW row)
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
bool
ha_federated
::
create_where_from_key
(
bool
ha_federated
::
create_where_from_key
(
String
*
to
,
KEY
*
key_info
,
String
*
to
,
const
byte
*
key
,
uint
key_length
)
KEY
*
key_info
,
const
byte
*
key
,
uint
key_length
)
{
{
uint
second_loop
=
0
;
uint
second_loop
=
0
;
KEY_PART_INFO
*
key_part
;
KEY_PART_INFO
*
key_part
;
bool
needs_quotes
;
bool
needs_quotes
;
String
tmp
;
DBUG_ENTER
(
"ha_federated::create_where_from_key"
);
DBUG_ENTER
(
"ha_federated::create_where_from_key"
);
for
(
key_part
=
key_info
->
key_part
;
(
int
)
key_length
>
0
;
key_part
++
)
for
(
key_part
=
key_info
->
key_part
;
(
int
)
key_length
>
0
;
key_part
++
)
...
@@ -656,7 +653,9 @@ bool ha_federated::create_where_from_key(
...
@@ -656,7 +653,9 @@ bool ha_federated::create_where_from_key(
uint
blob_length
=
uint2korr
(
key
);
uint
blob_length
=
uint2korr
(
key
);
key
+=
HA_KEY_BLOB_LENGTH
;
key
+=
HA_KEY_BLOB_LENGTH
;
key_length
-=
HA_KEY_BLOB_LENGTH
;
key_length
-=
HA_KEY_BLOB_LENGTH
;
if
(
append_escaped
(
to
,
(
char
*
)(
key
),
blob_length
))
tmp
.
set_quick
((
char
*
)
key
,
blob_length
,
&
my_charset_bin
);
if
(
append_escaped
(
to
,
&
tmp
))
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
DBUG_PRINT
(
"ha_federated::create_where_from_key"
,
(
"blob type %s"
,
to
->
c_ptr_quick
()));
DBUG_PRINT
(
"ha_federated::create_where_from_key"
,
(
"blob type %s"
,
to
->
c_ptr_quick
()));
...
@@ -666,7 +665,8 @@ bool ha_federated::create_where_from_key(
...
@@ -666,7 +665,8 @@ bool ha_federated::create_where_from_key(
{
{
length
=
uint2korr
(
key
);
length
=
uint2korr
(
key
);
key
+=
HA_KEY_BLOB_LENGTH
;
key
+=
HA_KEY_BLOB_LENGTH
;
if
(
append_escaped
(
to
,
(
char
*
)(
key
),
length
))
tmp
.
set_quick
((
char
*
)
key
,
length
,
&
my_charset_bin
);
if
(
append_escaped
(
to
,
&
tmp
))
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
DBUG_PRINT
(
"ha_federated::create_where_from_key"
,
(
"varchar type %s"
,
to
->
c_ptr_quick
()));
DBUG_PRINT
(
"ha_federated::create_where_from_key"
,
(
"varchar type %s"
,
to
->
c_ptr_quick
()));
...
@@ -680,7 +680,7 @@ bool ha_federated::create_where_from_key(
...
@@ -680,7 +680,7 @@ bool ha_federated::create_where_from_key(
res
=
field
->
val_str
(
&
str
,
(
char
*
)(
key
));
res
=
field
->
val_str
(
&
str
,
(
char
*
)(
key
));
if
(
field
->
result_type
()
==
STRING_RESULT
)
if
(
field
->
result_type
()
==
STRING_RESULT
)
{
{
if
(
append_escaped
(
to
,
(
char
*
)
res
->
ptr
(),
res
->
length
()
))
if
(
append_escaped
(
to
,
res
))
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
res
=
field
->
val_str
(
&
str
,
(
char
*
)(
key
));
res
=
field
->
val_str
(
&
str
,
(
char
*
)(
key
));
...
@@ -1235,7 +1235,7 @@ int ha_federated::update_row(
...
@@ -1235,7 +1235,7 @@ int ha_federated::update_row(
update_string
.
append
(
new_field_value
);
update_string
.
append
(
new_field_value
);
new_field_value
.
length
(
0
);
new_field_value
.
length
(
0
);
if
(
x
+
1
<
table
->
s
->
fields
)
if
(
(
uint
)
x
+
1
<
table
->
s
->
fields
)
{
{
update_string
.
append
(
", "
);
update_string
.
append
(
", "
);
if
(
!
has_a_primary_key
)
if
(
!
has_a_primary_key
)
...
@@ -1311,7 +1311,7 @@ int ha_federated::delete_row(const byte * buf)
...
@@ -1311,7 +1311,7 @@ int ha_federated::delete_row(const byte * buf)
delete_string
.
append
(
data_string
);
delete_string
.
append
(
data_string
);
data_string
.
length
(
0
);
data_string
.
length
(
0
);
if
(
x
+
1
<
table
->
s
->
fields
)
if
(
(
uint
)
x
+
1
<
table
->
s
->
fields
)
delete_string
.
append
(
" AND "
);
delete_string
.
append
(
" AND "
);
}
}
...
...
sql/mysql_priv.h
View file @
9240144b
...
@@ -715,7 +715,6 @@ bool mysql_do(THD *thd, List<Item> &values);
...
@@ -715,7 +715,6 @@ bool mysql_do(THD *thd, List<Item> &values);
/* sql_analyse.h */
/* sql_analyse.h */
bool
append_escaped
(
String
*
to_str
,
String
*
from_str
);
bool
append_escaped
(
String
*
to_str
,
String
*
from_str
);
bool
append_escaped
(
String
*
to_str
,
char
*
from
,
uint
from_len
);
/* sql_show.cc */
/* sql_show.cc */
bool
mysqld_show_open_tables
(
THD
*
thd
,
const
char
*
wild
);
bool
mysqld_show_open_tables
(
THD
*
thd
,
const
char
*
wild
);
...
...
sql/sql_analyse.cc
View file @
9240144b
...
@@ -59,8 +59,6 @@ int compare_ulonglong2(void* cmp_arg __attribute__((unused)),
...
@@ -59,8 +59,6 @@ int compare_ulonglong2(void* cmp_arg __attribute__((unused)),
return
compare_ulonglong
(
s
,
t
);
return
compare_ulonglong
(
s
,
t
);
}
}
bool
append_escaped
(
String
*
to_str
,
String
*
from_str
);
bool
append_escaped
(
String
*
to_str
,
char
*
from
,
uint
from_len
);
Procedure
*
Procedure
*
proc_analyse_init
(
THD
*
thd
,
ORDER
*
param
,
select_result
*
result
,
proc_analyse_init
(
THD
*
thd
,
ORDER
*
param
,
select_result
*
result
,
...
@@ -1087,38 +1085,3 @@ bool append_escaped(String *to_str, String *from_str)
...
@@ -1087,38 +1085,3 @@ bool append_escaped(String *to_str, String *from_str)
}
}
return
0
;
return
0
;
}
}
bool
append_escaped
(
String
*
to_str
,
char
*
from
,
uint
from_len
)
{
char
*
end
,
c
;
if
(
to_str
->
realloc
(
to_str
->
length
()
+
from_len
))
return
1
;
end
=
from
+
from_len
;
for
(;
from
<
end
;
from
++
)
{
c
=
*
from
;
switch
(
c
)
{
case
'\0'
:
c
=
'0'
;
break
;
case
'\032'
:
c
=
'Z'
;
break
;
case
'\\'
:
case
'\''
:
break
;
default:
goto
normal_character
;
}
if
(
to_str
->
append
(
'\\'
))
return
1
;
normal_character:
if
(
to_str
->
append
(
c
))
return
1
;
}
return
0
;
}
sql/sql_insert.cc
View file @
9240144b
...
@@ -1811,13 +1811,13 @@ select_insert::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
...
@@ -1811,13 +1811,13 @@ select_insert::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
is the same table (Bug #6034). Do the preparation after the select phase
is the same table (Bug #6034). Do the preparation after the select phase
in select_insert::prepare2().
in select_insert::prepare2().
*/
*/
if
(
info
.
ignore
||
info
.
handle_duplicates
!=
DUP_ERROR
)
table
->
file
->
extra
(
HA_EXTRA_IGNORE_DUP_KEY
);
table
->
file
->
start_bulk_insert
((
ha_rows
)
0
);
table
->
file
->
start_bulk_insert
((
ha_rows
)
0
);
}
}
restore_record
(
table
,
s
->
default_values
);
// Get empty record
restore_record
(
table
,
s
->
default_values
);
// Get empty record
table
->
next_number_field
=
table
->
found_next_number_field
;
table
->
next_number_field
=
table
->
found_next_number_field
;
thd
->
cuted_fields
=
0
;
thd
->
cuted_fields
=
0
;
if
(
info
.
ignore
||
info
.
handle_duplicates
!=
DUP_ERROR
)
table
->
file
->
extra
(
HA_EXTRA_IGNORE_DUP_KEY
);
thd
->
no_trans_update
=
0
;
thd
->
no_trans_update
=
0
;
thd
->
abort_on_warning
=
(
!
info
.
ignore
&&
thd
->
abort_on_warning
=
(
!
info
.
ignore
&&
(
thd
->
variables
.
sql_mode
&
(
thd
->
variables
.
sql_mode
&
...
@@ -1847,14 +1847,9 @@ select_insert::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
...
@@ -1847,14 +1847,9 @@ select_insert::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
int
select_insert
::
prepare2
(
void
)
int
select_insert
::
prepare2
(
void
)
{
{
DBUG_ENTER
(
"select_insert::prepare2"
);
DBUG_ENTER
(
"select_insert::prepare2"
);
if
(
thd
->
lex
->
current_select
->
options
&
OPTION_BUFFER_RESULT
)
if
(
thd
->
lex
->
current_select
->
options
&
OPTION_BUFFER_RESULT
)
{
if
(
info
.
ignore
||
info
.
handle_duplicates
!=
DUP_ERROR
)
table
->
file
->
extra
(
HA_EXTRA_IGNORE_DUP_KEY
);
table
->
file
->
start_bulk_insert
((
ha_rows
)
0
);
table
->
file
->
start_bulk_insert
((
ha_rows
)
0
);
}
DBUG_RETURN
(
0
);
return
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