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
beb61609
Commit
beb61609
authored
Aug 16, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix doxygen warnings.
parent
b2716c0d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
5 deletions
+11
-5
include/mysql/plugin.h
include/mysql/plugin.h
+1
-1
sql/field.h
sql/field.h
+6
-1
sql/field_conv.cc
sql/field_conv.cc
+2
-1
sql/log_event.h
sql/log_event.h
+2
-2
No files found.
include/mysql/plugin.h
View file @
beb61609
...
...
@@ -773,7 +773,7 @@ void thd_get_xid(const MYSQL_THD thd, MYSQL_XID *xid);
Invalidate the query cache for a given table.
@param thd user thread connection handle
@param key databasename\
0tablename
\0
@param key databasename\
\0tablename\
\0
@param key_length length of key in bytes, including the NUL bytes
@param using_trx flag: TRUE if using transactions, FALSE otherwise
*/
...
...
sql/field.h
View file @
beb61609
...
...
@@ -1732,7 +1732,12 @@ class Send_field {
*/
class
Copy_field
:
public
Sql_alloc
{
void
(
*
get_copy_func
(
Field
*
to
,
Field
*
from
))(
Copy_field
*
);
/**
Convenience definition of a copy function returned by
get_copy_func.
*/
typedef
void
Copy_func
(
Copy_field
*
);
Copy_func
*
get_copy_func
(
Field
*
to
,
Field
*
from
);
public:
uchar
*
from_ptr
,
*
to_ptr
;
uchar
*
from_null_ptr
,
*
to_null_ptr
;
...
...
sql/field_conv.cc
View file @
beb61609
...
...
@@ -620,7 +620,8 @@ void Copy_field::set(Field *to,Field *from,bool save)
}
void
(
*
Copy_field
::
get_copy_func
(
Field
*
to
,
Field
*
from
))(
Copy_field
*
)
Copy_field
::
Copy_func
*
Copy_field
::
get_copy_func
(
Field
*
to
,
Field
*
from
)
{
bool
compatible_db_low_byte_first
=
(
to
->
table
->
s
->
db_low_byte_first
==
from
->
table
->
s
->
db_low_byte_first
);
...
...
sql/log_event.h
View file @
beb61609
...
...
@@ -435,7 +435,7 @@ struct sql_ex_info
((ULL(1) << 14) | (ULL(1) << 26) | (ULL(1) << 27) | (ULL(1) << 19))
#if OPTIONS_WRITTEN_TO_BIN_LOG != EXPECTED_OPTIONS
#error
1
#error
#endif
#undef EXPECTED_OPTIONS
/* You shouldn't use this one */
...
...
@@ -2549,7 +2549,7 @@ protected:
<caption>Incident event format</caption>
<tr>
<th>Symbol</th>
<th>Size<br
/
>(bytes)</th>
<th>Size<br>(bytes)</th>
<th>Description</th>
</tr>
<tr>
...
...
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