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
58e00848
Commit
58e00848
authored
Feb 13, 2003
by
bar@bar.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
item_strfunc.cc:
Fix
parent
1172215b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
sql/item_strfunc.cc
sql/item_strfunc.cc
+8
-8
No files found.
sql/item_strfunc.cc
View file @
58e00848
...
...
@@ -2576,15 +2576,15 @@ String *Item_func_geometry_type::val_str(String *str)
String
*
Item_func_envelope
::
val_str
(
String
*
str
)
{
String
arg_val
;
String
*
wkb
=
args
[
0
]
->
val_str
(
&
arg_val
);
String
*
res
=
args
[
0
]
->
val_str
(
str
);
Geometry
geom
;
null_value
=
args
[
0
]
->
null_value
||
geom
.
create_from_wkb
(
wkb
->
ptr
(),
wkb
->
length
())
||
geom
.
envelope
(
str
);
return
null_value
?
0
:
str
;
if
((
null_value
=
args
[
0
]
->
null_value
||
geom
.
create_from_wkb
(
res
->
ptr
(),
res
->
length
())))
return
0
;
res
->
length
(
0
);
return
(
null_value
=
geom
.
envelope
(
res
))
?
0
:
res
;
}
...
...
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