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
97bdd803
Commit
97bdd803
authored
Jul 17, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a build break on 64 bit (uint and size_t are distinct types).
parent
0e92e434
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/sql_lex.cc
sql/sql_lex.cc
+1
-1
sql/sql_lex.h
sql/sql_lex.h
+1
-1
No files found.
sql/sql_lex.cc
View file @
97bdd803
...
...
@@ -2326,7 +2326,7 @@ uint8 st_lex::get_effective_with_check(TABLE_LIST *view)
*/
bool
st_lex
::
copy_db_to
(
char
**
p_db
,
uin
t
*
p_db_length
)
const
st_lex
::
copy_db_to
(
char
**
p_db
,
size_
t
*
p_db_length
)
const
{
if
(
sphead
)
{
...
...
sql/sql_lex.h
View file @
97bdd803
...
...
@@ -1782,7 +1782,7 @@ typedef struct st_lex : public Query_tables_list
context_stack
.
pop
();
}
bool
copy_db_to
(
char
**
p_db
,
uin
t
*
p_db_length
)
const
;
bool
copy_db_to
(
char
**
p_db
,
size_
t
*
p_db_length
)
const
;
Name_resolution_context
*
current_context
()
{
...
...
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