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
50ff8ea3
Commit
50ff8ea3
authored
Apr 15, 2004
by
magnus@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formatting changes requested by Monty
parent
7c2c408c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
sql/gen_lex_hash.cc
sql/gen_lex_hash.cc
+2
-2
sql/item_subselect.cc
sql/item_subselect.cc
+1
-1
sql/sql_lex.cc
sql/sql_lex.cc
+1
-1
sql/sql_string.cc
sql/sql_string.cc
+1
-1
No files found.
sql/gen_lex_hash.cc
View file @
50ff8ea3
...
...
@@ -461,7 +461,7 @@ int main(int argc,char **argv)
hash_map= sql_functions_map;
\n
\
register uint32 cur_struct= uint4korr(hash_map+((len-1)*4));
\n
\
\n
\
for(;;){
\n
\
for
(;;){
\n
\
register uchar first_char= (uchar)cur_struct;
\n
\
\n
\
if (first_char == 0)
\n
\
...
...
@@ -492,7 +492,7 @@ int main(int argc,char **argv)
hash_map= symbols_map;
\n
\
register uint32 cur_struct= uint4korr(hash_map+((len-1)*4));
\n
\
\n
\
for(;;){
\n
\
for
(;;){
\n
\
register uchar first_char= (uchar)cur_struct;
\n
\
\n
\
if (first_char==0){
\n
\
...
...
sql/item_subselect.cc
View file @
50ff8ea3
...
...
@@ -1356,7 +1356,7 @@ void subselect_uniquesubquery_engine::exclude()
table_map
subselect_engine
::
calc_const_tables
(
TABLE_LIST
*
table
)
{
table_map
map
=
0
;
for
(;
table
;
table
=
table
->
next
)
for
(;
table
;
table
=
table
->
next
)
{
TABLE
*
tbl
=
table
->
table
;
if
(
tbl
&&
tbl
->
const_table
)
...
...
sql/sql_lex.cc
View file @
50ff8ea3
...
...
@@ -1529,7 +1529,7 @@ bool st_select_lex::setup_ref_array(THD *thd, uint order_group_num)
*/
bool
st_select_lex_unit
::
check_updateable
(
char
*
db
,
char
*
table
)
{
for
(
SELECT_LEX
*
sl
=
first_select
();
sl
;
sl
=
sl
->
next_select
())
for
(
SELECT_LEX
*
sl
=
first_select
();
sl
;
sl
=
sl
->
next_select
())
if
(
sl
->
check_updateable
(
db
,
table
))
return
1
;
return
0
;
...
...
sql/sql_string.cc
View file @
50ff8ea3
...
...
@@ -830,7 +830,7 @@ outp:
void
String
::
print
(
String
*
str
)
{
char
*
st
=
(
char
*
)
Ptr
,
*
end
=
st
+
str_length
;
for
(;
st
<
end
;
st
++
)
for
(;
st
<
end
;
st
++
)
{
uchar
c
=
*
st
;
switch
(
c
)
...
...
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