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
6a594c07
Commit
6a594c07
authored
May 14, 2004
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get rid of remaining strtolls - irix64 compatibility
parent
67f1c04f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
No files found.
sql/sql_yacc.yy
View file @
6a594c07
...
...
@@ -4683,8 +4683,8 @@ literal:
| TIMESTAMP text_literal { $$ = $2; };
NUM_literal:
NUM {
$$ = new Item_int($1.str, (longlong) strtol($1.str, NULL, 10),
$1.length); }
| LONG_NUM {
$$ = new Item_int($1.str, (longlong) strtoll($1.str,NULL,10
), $1.length); }
NUM {
int error; $$ = new Item_int($1.str, (longlong) my_strtoll10($1.str, NULL, &error),
$1.length); }
| LONG_NUM {
int error; $$ = new Item_int($1.str, (longlong) my_strtoll10($1.str, NULL, &error
), $1.length); }
| ULONGLONG_NUM { $$ = new Item_uint($1.str, $1.length); }
| REAL_NUM { $$ = new Item_real($1.str, $1.length); }
| FLOAT_NUM { $$ = new Item_float($1.str, $1.length); }
...
...
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