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
a69c702c
Commit
a69c702c
authored
Mar 27, 2007
by
thek@kpdesk.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge kpdesk.mysql.com:/home/thek/dev/mysql-5.0-runtime
into kpdesk.mysql.com:/home/thek/dev/mysql-5.1-runtime
parents
4b7fa187
1381b26e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
mysql-test/t/sp.test
mysql-test/t/sp.test
+0
-1
sql/item_func.cc
sql/item_func.cc
+2
-0
No files found.
mysql-test/t/sp.test
View file @
a69c702c
...
@@ -7043,7 +7043,6 @@ select bug20777(0) as 'lower bounds unsigned bigint';
...
@@ -7043,7 +7043,6 @@ select bug20777(0) as 'lower bounds unsigned bigint';
select bug20777(18446744073709551615) as 'upper bounds unsigned bigint';
select bug20777(18446744073709551615) as 'upper bounds unsigned bigint';
select bug20777(18446744073709551616) as 'upper bounds unsigned bigint + 1';
select bug20777(18446744073709551616) as 'upper bounds unsigned bigint + 1';
select bug20777(-1) as 'lower bounds unsigned bigint - 1';
select bug20777(-1) as 'lower bounds unsigned bigint - 1';
select bug20777(1.84e+19) as 'submitter value, 1.84e19';
create table examplebug20777 as select
create table examplebug20777 as select
0 as 'i',
0 as 'i',
...
...
sql/item_func.cc
View file @
a69c702c
...
@@ -4988,6 +4988,8 @@ longlong Item_func_row_count::val_int()
...
@@ -4988,6 +4988,8 @@ longlong Item_func_row_count::val_int()
}
}
Item_func_sp
::
Item_func_sp
(
Name_resolution_context
*
context_arg
,
sp_name
*
name
)
Item_func_sp
::
Item_func_sp
(
Name_resolution_context
*
context_arg
,
sp_name
*
name
)
:
Item_func
(),
context
(
context_arg
),
m_name
(
name
),
m_sp
(
NULL
),
sp_result_field
(
NULL
)
:
Item_func
(),
context
(
context_arg
),
m_name
(
name
),
m_sp
(
NULL
),
sp_result_field
(
NULL
)
{
{
...
...
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