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
579f6443
"app/models/project_services/buildkite_service.rb" did not exist on "7e204cf389346d23e71bc4c2fa9e14cf82a7ed2e"
Commit
579f6443
authored
May 20, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings
parent
a19ddf01
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
sql/item.cc
sql/item.cc
+1
-1
sql/item.h
sql/item.h
+1
-1
sql/sql_lex.cc
sql/sql_lex.cc
+1
-1
sql/sql_lex.h
sql/sql_lex.h
+1
-1
No files found.
sql/item.cc
View file @
579f6443
...
...
@@ -8862,7 +8862,7 @@ void view_error_processor(THD *thd, void *data)
}
inline
st
ruct
st
_select_lex
*
Item_ident
::
get_depended_from
()
const
inline
st_select_lex
*
Item_ident
::
get_depended_from
()
const
{
st_select_lex
*
dep
;
if
((
dep
=
depended_from
))
...
...
sql/item.h
View file @
579f6443
...
...
@@ -1637,7 +1637,7 @@ public:
Item_ident
(
TABLE_LIST
*
view_arg
,
const
char
*
field_name_arg
);
const
char
*
full_name
()
const
;
void
cleanup
();
st
ruct
st
_select_lex
*
get_depended_from
()
const
;
st_select_lex
*
get_depended_from
()
const
;
bool
remove_dependence_processor
(
uchar
*
arg
);
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
virtual
bool
change_context_processor
(
uchar
*
cntx
)
...
...
sql/sql_lex.cc
View file @
579f6443
...
...
@@ -3521,7 +3521,7 @@ void st_select_lex::set_explain_type()
for the derived table to which this select belongs to.
*/
void
SELECT_LEX
::
increase_derived_records
(
uint
records
)
void
SELECT_LEX
::
increase_derived_records
(
ha_rows
records
)
{
SELECT_LEX_UNIT
*
unit
=
master_unit
();
DBUG_ASSERT
(
unit
->
derived
);
...
...
sql/sql_lex.h
View file @
579f6443
...
...
@@ -892,7 +892,7 @@ public:
select_limit
==
0
);
}
void
mark_as_belong_to_derived
(
TABLE_LIST
*
derived
);
void
increase_derived_records
(
uint
records
);
void
increase_derived_records
(
ha_rows
records
);
void
update_used_tables
();
void
mark_const_derived
(
bool
empty
);
...
...
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