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
14f0c167
Commit
14f0c167
authored
Mar 16, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge abelkin@bk-internal.mysql.com:/home/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
parents
8ec0b460
645091c4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
libmysql/libmysql.def
libmysql/libmysql.def
+9
-9
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/opt_range.cc
sql/opt_range.cc
+2
-2
No files found.
libmysql/libmysql.def
View file @
14f0c167
...
...
@@ -33,8 +33,8 @@ EXPORTS
myodbc_remove_escape
mysql_affected_rows
mysql_autocommit
mysql_bind_param
mysql_bind_result
mysql_
stmt_
bind_param
mysql_
stmt_
bind_result
mysql_change_user
mysql_character_set_name
mysql_close
...
...
@@ -46,9 +46,9 @@ EXPORTS
mysql_errno
mysql_error
mysql_escape_string
mysql_execute
mysql_fetch
mysql_fetch_column
mysql_
stmt_
execute
mysql_
stmt_
fetch
mysql_
stmt_
fetch_column
mysql_fetch_field
mysql_fetch_field_direct
mysql_fetch_fields
...
...
@@ -78,11 +78,11 @@ EXPORTS
mysql_num_rows
mysql_odbc_escape_string
mysql_options
mysql_param_count
mysql_
param_result
mysql_
stmt_
param_count
mysql_
stmt_param_metadata
mysql_ping
mysql_prepare
mysql_
ge
t_metadata
mysql_
stmt_resul
t_metadata
mysql_query
mysql_read_query_result
mysql_real_connect
...
...
@@ -93,7 +93,7 @@ EXPORTS
mysql_row_seek
mysql_row_tell
mysql_select_db
mysql_send_long_data
mysql_s
tmt_s
end_long_data
mysql_send_query
mysql_shutdown
mysql_ssl_set
...
...
sql/log_event.cc
View file @
14f0c167
...
...
@@ -2642,7 +2642,7 @@ Create_file_log_event::Create_file_log_event(const char* buf, int len,
We must make copy of 'buf' as this event may have to live over a
rotate log entry when used in mysqlbinlog
*/
if
(
!
(
event_buf
=
my_memdup
(
buf
,
len
,
MYF
(
MY_WME
)))
||
if
(
!
(
event_buf
=
my_memdup
(
(
byte
*
)
buf
,
len
,
MYF
(
MY_WME
)))
||
(
copy_log_event
(
event_buf
,
len
,
old_format
)))
DBUG_VOID_RETURN
;
...
...
sql/opt_range.cc
View file @
14f0c167
...
...
@@ -2560,8 +2560,8 @@ QUICK_SELECT *get_quick_select_for_ref(THD *thd, TABLE *table, TABLE_REF *ref)
QUICK_RANGE
*
null_range
;
*
ref
->
null_ref_key
=
1
;
// Set null byte then create a range
if
(
!
(
null_range
=
new
QUICK_RANGE
(
ref
->
key_buff
,
ref
->
key_length
,
ref
->
key_buff
,
ref
->
key_length
,
if
(
!
(
null_range
=
new
QUICK_RANGE
(
(
char
*
)
ref
->
key_buff
,
ref
->
key_length
,
(
char
*
)
ref
->
key_buff
,
ref
->
key_length
,
EQ_RANGE
)))
goto
err
;
*
ref
->
null_ref_key
=
0
;
// Clear null byte
...
...
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