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
03a5455c
Commit
03a5455c
authored
Aug 29, 2024
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-34833 Assertion failure in Item_float::do_build_clone (Item_static_float_func)
Added missing method of Item_static_float_func
parent
872dbec9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
mysql-test/main/item_types.result
mysql-test/main/item_types.result
+10
-0
mysql-test/main/item_types.test
mysql-test/main/item_types.test
+12
-0
sql/item.h
sql/item.h
+2
-0
No files found.
mysql-test/main/item_types.result
View file @
03a5455c
...
...
@@ -51,5 +51,15 @@ a
0
DROP VIEW t;
#
# MDEV-34833: Assertion failure in Item_float::do_build_clone
# (Item_static_float_func)
#
CREATE VIEW v1 (f,f2) AS SELECT connection_id(),pi();
CREATE TABLE t1 AS SELECT 1;
SELECT * FROM v1 JOIN t1 ON f=f2;
f f2 1
DROP VIEW v1;
DROP TABLE t1;
#
# End of 10.5 tests
#
mysql-test/main/item_types.test
View file @
03a5455c
...
...
@@ -55,6 +55,18 @@ CREATE VIEW t AS SELECT 0 AS a;
SELECT
*
FROM
t
WHERE
a
=
ALL
(
SELECT
0
);
DROP
VIEW
t
;
--
echo
#
--
echo
# MDEV-34833: Assertion failure in Item_float::do_build_clone
--
echo
# (Item_static_float_func)
--
echo
#
CREATE
VIEW
v1
(
f
,
f2
)
AS
SELECT
connection_id
(),
pi
();
CREATE
TABLE
t1
AS
SELECT
1
;
SELECT
*
FROM
v1
JOIN
t1
ON
f
=
f2
;
DROP
VIEW
v1
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# End of 10.5 tests
--
echo
#
sql/item.h
View file @
03a5455c
...
...
@@ -4542,6 +4542,8 @@ class Item_static_float_func :public Item_float
{
return
const_charset_converter
(
thd
,
tocs
,
true
,
func_name
);
}
Item
*
do_get_copy
(
THD
*
thd
)
const
override
{
return
get_item_copy
<
Item_static_float_func
>
(
thd
,
this
);
}
};
...
...
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