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
6d2f738f
Commit
6d2f738f
authored
Aug 08, 2007
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't require a space between "if" and "(". This should
also fix "while" and "connect" It's now possible to write "if("
parent
792ac3fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
client/mysqltest.c
client/mysqltest.c
+6
-2
mysql-test/t/mysqltest.test
mysql-test/t/mysqltest.test
+1
-1
No files found.
client/mysqltest.c
View file @
6d2f738f
...
...
@@ -4814,9 +4814,13 @@ int read_command(struct st_command** command_ptr)
if
(
!
(
command
->
query_buf
=
command
->
query
=
my_strdup
(
p
,
MYF
(
MY_WME
))))
die
(
"Out of memory"
);
/* Calculate first word and first argument */
for
(
p
=
command
->
query
;
*
p
&&
!
my_isspace
(
charset_info
,
*
p
)
;
p
++
)
;
/* Calculate first word length(the command), terminated by space or ( */
p
=
command
->
query
;
while
(
*
p
&&
!
my_isspace
(
charset_info
,
*
p
)
&&
*
p
!=
'('
)
p
++
;
command
->
first_word_len
=
(
uint
)
(
p
-
command
->
query
);
DBUG_PRINT
(
"info"
,
(
"first_word: %.*s"
,
command
->
first_word_len
,
command
->
query
));
/* Skip spaces between command and first argument */
while
(
*
p
&&
my_isspace
(
charset_info
,
*
p
))
...
...
mysql-test/t/mysqltest.test
View file @
6d2f738f
...
...
@@ -969,7 +969,7 @@ if (!$counter)
echo
Counter
is
not
0
,
(
counter
=
10
);
}
let
$counter
=
0
;
if
(
$counter
)
if
(
$counter
)
{
echo
Counter
is
greater
than
0
,
(
counter
=
0
);
}
...
...
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