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
71d5c535
Commit
71d5c535
authored
Oct 04, 2007
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Track typedef'd struct. Name changed in Enterprise tree, but
community-exclusive file also referred to struct.
parent
cf74e43f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
sql/sql_profile.cc
sql/sql_profile.cc
+2
-2
sql/sql_profile.h
sql/sql_profile.h
+2
-2
No files found.
sql/sql_profile.cc
View file @
71d5c535
...
...
@@ -28,7 +28,7 @@ const char * const _unknown_func_ = "<unknown>";
/**
Connects Information_Schema and Profiling.
*/
int
fill_query_profile_statistics_info
(
THD
*
thd
,
struct
st_table_list
*
tables
,
int
fill_query_profile_statistics_info
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
*
cond
)
{
#ifdef ENABLED_PROFILING
...
...
@@ -480,7 +480,7 @@ void PROFILING::set_query_source(char *query_source_arg, uint query_length_arg)
There are two ways to get to this function: Selecting from the information
schema, and a SHOW command.
*/
int
PROFILING
::
fill_statistics_info
(
THD
*
thd
,
struct
st_table_list
*
tables
,
Item
*
cond
)
int
PROFILING
::
fill_statistics_info
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
*
cond
)
{
DBUG_ENTER
(
"PROFILING::fill_statistics_info"
);
TABLE
*
table
=
tables
->
table
;
...
...
sql/sql_profile.h
View file @
71d5c535
...
...
@@ -38,7 +38,7 @@ extern const char * const _unknown_func_;
#endif
extern
ST_FIELD_INFO
query_profile_statistics_info
[];
int
fill_query_profile_statistics_info
(
THD
*
thd
,
struct
st_table_list
*
tables
,
Item
*
cond
);
int
fill_query_profile_statistics_info
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
*
cond
);
int
make_profile_table_for_show
(
THD
*
thd
,
ST_SCHEMA_TABLE
*
schema_table
);
...
...
@@ -334,7 +334,7 @@ class PROFILING
bool
show_profiles
();
/* ... from INFORMATION_SCHEMA.PROFILING ... */
int
fill_statistics_info
(
THD
*
thd
,
struct
st_table_list
*
tables
,
Item
*
cond
);
int
fill_statistics_info
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
*
cond
);
};
# endif
/* HAVE_PROFILING */
...
...
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