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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0f888b1b
Commit
0f888b1b
authored
Mar 09, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into pcgem.rdg.cyberkinetica.com:/var/db/bk/work-acurtis/bug3788.4
parents
c9f3e0f4
5b26228c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
23 deletions
+20
-23
sql/item_func.cc
sql/item_func.cc
+19
-19
sql/item_func.h
sql/item_func.h
+1
-4
No files found.
sql/item_func.cc
View file @
0f888b1b
...
...
@@ -4368,33 +4368,19 @@ longlong Item_func_row_count::val_int()
Item_func_sp
::
Item_func_sp
(
sp_name
*
name
)
:
Item_func
(),
m_name
(
name
),
m_sp
(
NULL
)
{
char
*
empty_name
=
(
char
*
)
""
;
maybe_null
=
1
;
m_name
->
init_qname
(
current_thd
);
bzero
(
&
dummy_table
,
sizeof
(
dummy_table
));
dummy_table
.
share
.
table_cache_key
=
empty_name
;
dummy_table
.
share
.
table_name
=
empty_name
;
dummy_table
.
table
.
alias
=
empty_name
;
dummy_table
.
share
.
table_name
=
empty_name
;
dummy_table
.
table
.
maybe_null
=
maybe_null
;
dummy_table
.
table
.
in_use
=
current_thd
;
dummy_table
.
table
.
s
=
&
dummy_table
.
share
;
dummy_table
=
(
TABLE
*
)
sql_alloc
(
sizeof
(
TABLE
));
bzero
(
dummy_table
,
sizeof
(
TABLE
));
}
Item_func_sp
::
Item_func_sp
(
sp_name
*
name
,
List
<
Item
>
&
list
)
:
Item_func
(
list
),
m_name
(
name
),
m_sp
(
NULL
)
{
char
*
empty_name
=
(
char
*
)
""
;
maybe_null
=
1
;
m_name
->
init_qname
(
current_thd
);
bzero
(
&
dummy_table
,
sizeof
(
dummy_table
));
dummy_table
.
share
.
table_cache_key
=
empty_name
;
dummy_table
.
share
.
table_name
=
empty_name
;
dummy_table
.
table
.
alias
=
empty_name
;
dummy_table
.
share
.
table_name
=
empty_name
;
dummy_table
.
table
.
maybe_null
=
maybe_null
;
dummy_table
.
table
.
in_use
=
current_thd
;
dummy_table
.
table
.
s
=
&
dummy_table
.
share
;
dummy_table
=
(
TABLE
*
)
sql_alloc
(
sizeof
(
TABLE
));
bzero
(
dummy_table
,
sizeof
(
TABLE
));
}
const
char
*
...
...
@@ -4426,7 +4412,21 @@ Item_func_sp::sp_result_field(void) const
THD
*
thd
=
current_thd
;
DBUG_ENTER
(
"Item_func_sp::sp_result_field"
);
if
(
m_sp
)
field
=
m_sp
->
make_field
(
max_length
,
name
,
&
dummy_table
.
table
);
{
if
(
dummy_table
->
s
==
NULL
)
{
char
*
empty_name
=
(
char
*
)
""
;
TABLE_SHARE
*
share
;
dummy_table
->
s
=
share
=
&
dummy_table
->
share_not_to_be_used
;
dummy_table
->
alias
=
empty_name
;
dummy_table
->
maybe_null
=
maybe_null
;
dummy_table
->
in_use
=
current_thd
;
share
->
table_cache_key
=
empty_name
;
share
->
table_name
=
empty_name
;
share
->
table_name
=
empty_name
;
}
field
=
m_sp
->
make_field
(
max_length
,
name
,
dummy_table
);
}
DBUG_RETURN
(
field
);
}
...
...
sql/item_func.h
View file @
0f888b1b
...
...
@@ -1252,10 +1252,7 @@ class Item_func_sp :public Item_func
private:
sp_name
*
m_name
;
mutable
sp_head
*
m_sp
;
mutable
struct
{
TABLE
table
;
TABLE_SHARE
share
;
}
dummy_table
;
TABLE
*
dummy_table
;
int
execute
(
Item
**
itp
);
Field
*
sp_result_field
(
void
)
const
;
...
...
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