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
f9b5640c
Commit
f9b5640c
authored
Dec 22, 2008
by
Mikael Ronstrom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DTrace fixes plus fixing a too long file name
parent
9ff5c8cb
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
5 deletions
+7
-5
mysql-test/suite/funcs_1/r/is_coll_charset_applic.result
mysql-test/suite/funcs_1/r/is_coll_charset_applic.result
+0
-0
mysql-test/suite/funcs_1/t/is_coll_charset_applic.test
mysql-test/suite/funcs_1/t/is_coll_charset_applic.test
+0
-0
sql/Makefile.am
sql/Makefile.am
+3
-1
sql/filesort.cc
sql/filesort.cc
+1
-1
sql/sp_head.cc
sql/sp_head.cc
+1
-1
sql/sql_update.cc
sql/sql_update.cc
+1
-1
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+1
-1
No files found.
mysql-test/suite/funcs_1/r/is_coll
ation_character_set_applicability
.result
→
mysql-test/suite/funcs_1/r/is_coll
_charset_applic
.result
View file @
f9b5640c
File moved
mysql-test/suite/funcs_1/t/is_coll
ation_character_set_applicability
.test
→
mysql-test/suite/funcs_1/t/is_coll
_charset_applic
.test
View file @
f9b5640c
File moved
sql/Makefile.am
View file @
f9b5640c
...
...
@@ -29,7 +29,7 @@ libexec_PROGRAMS = mysqld
EXTRA_PROGRAMS
=
gen_lex_hash
bin_PROGRAMS
=
mysql_tzinfo_to_sql
DTRACEFILES
=
filesort.o
\
ha_ndbcluster.o
\
libndb_la-
ha_ndbcluster.o
\
handler.o
\
mysqld.o
\
net_serv.o
\
...
...
@@ -207,6 +207,8 @@ install-exec-hook:
test
!
-f
mysqld.sym.gz
||
$(INSTALL_DATA)
mysqld.sym.gz
$(DESTDIR)$(pkglibdir)
if
HAVE_DTRACE_DASH_G
libndb_la_LIBADD
=
probes_all.o
libndb_la_DEPENDENCIES
=
probes_all.o dtrace_files dtrace_providers
mysqld_LDADD
+=
probes_all.o
mysqld_DEPENDENCIES
+=
probes_all.o dtrace_files dtrace_providers
CLEANFILES
+=
dtrace_files dtrace_providers probes_all.o
...
...
sql/filesort.cc
View file @
f9b5640c
...
...
@@ -122,7 +122,7 @@ ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder, uint s_length,
TABLE_LIST
*
tab
=
table
->
pos_in_table_list
;
Item_subselect
*
subselect
=
tab
?
tab
->
containing_subselect
()
:
0
;
MYSQL_FILESORT_START
(
table
->
s
->
db
.
str
,
table
->
s
->
tablename
.
str
);
MYSQL_FILESORT_START
(
table
->
s
->
db
.
str
,
table
->
s
->
table
_
name
.
str
);
/*
Release InnoDB's adaptive hash index latch (if holding) before
...
...
sql/sp_head.cc
View file @
f9b5640c
...
...
@@ -2901,7 +2901,7 @@ sp_instr_stmt::exec_core(THD *thd, uint *nextp)
thd
->
thread_id
,
(
char
*
)
(
thd
->
db
?
thd
->
db
:
""
),
thd
->
security_ctx
->
priv_user
,
thd
->
security_ctx
->
host_or_ip
,
(
char
*
)
thd
->
security_ctx
->
host_or_ip
,
3
);
int
res
=
mysql_execute_command
(
thd
);
MYSQL_QUERY_EXEC_DONE
(
res
);
...
...
sql/sql_update.cc
View file @
f9b5640c
...
...
@@ -1231,7 +1231,7 @@ bool mysql_multi_update(THD *thd,
result
->
send_error
(
ER_UNKNOWN_ERROR
,
ER
(
ER_UNKNOWN_ERROR
));
result
->
abort
();
}
MYSQL_MULTI_UPDATE_DONE
(
res
,
result
->
found
(),
result
->
updated
());
MYSQL_MULTI_UPDATE_DONE
(
res
,
result
->
num_found
(),
result
->
num_
updated
());
delete
result
;
thd
->
abort_on_warning
=
0
;
DBUG_RETURN
(
FALSE
);
...
...
storage/federated/ha_federated.cc
View file @
f9b5640c
...
...
@@ -2334,7 +2334,7 @@ int ha_federated::index_read(uchar *buf, const uchar *key,
rc
=
index_read_idx_with_result_set
(
buf
,
active_index
,
key
,
key_len
,
find_flag
,
&
stored_result
);
MYSQL_INDEX_READ_ROW_DONE
(
r
etval
);
MYSQL_INDEX_READ_ROW_DONE
(
r
c
);
DBUG_RETURN
(
rc
);
}
...
...
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