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
f978c7cd
Commit
f978c7cd
authored
Nov 18, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge gleb.loc:/work/bk/5.0-opt-32335
into gleb.loc:/work/bk/5.0-opt
parents
71232b16
99054db6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
mysql-test/r/select.result
mysql-test/r/select.result
+6
-0
mysql-test/t/select.test
mysql-test/t/select.test
+11
-0
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+2
-1
No files found.
mysql-test/r/select.result
View file @
f978c7cd
...
...
@@ -4322,4 +4322,10 @@ c3
DROP TABLE t1;
DROP TABLE t2;
CREATE TABLE t1 (c1 BIGINT NOT NULL);
INSERT INTO t1 (c1) VALUES (1);
SELECT * FROM t1 WHERE c1 > NULL + 1;
c1
DROP TABLE t1;
End of 5.0 tests
mysql-test/t/select.test
View file @
f978c7cd
...
...
@@ -3661,4 +3661,15 @@ DROP TABLE t2;
###########################################################################
#
# Bug #32335: Error on BIGINT > NULL + 1
#
CREATE
TABLE
t1
(
c1
BIGINT
NOT
NULL
);
INSERT
INTO
t1
(
c1
)
VALUES
(
1
);
SELECT
*
FROM
t1
WHERE
c1
>
NULL
+
1
;
DROP
TABLE
t1
;
--
echo
--
echo
End
of
5.0
tests
sql/item_cmpfunc.cc
View file @
f978c7cd
...
...
@@ -350,11 +350,12 @@ static bool convert_constant_item(THD *thd, Field *field, Item **item)
thd
->
variables
.
sql_mode
=
(
orig_sql_mode
&
~
MODE_NO_ZERO_DATE
)
|
MODE_INVALID_DATES
;
thd
->
count_cuted_fields
=
CHECK_FIELD_IGNORE
;
if
(
!
(
*
item
)
->
save_in_field
(
field
,
1
)
&&
!
((
*
item
)
->
null_value
))
if
(
!
(
*
item
)
->
is_null
()
&&
!
(
*
item
)
->
save_in_field
(
field
,
1
))
{
Item
*
tmp
=
new
Item_int_with_ref
(
field
->
val_int
(),
*
item
,
test
(
field
->
flags
&
UNSIGNED_FLAG
));
thd
->
variables
.
sql_mode
=
orig_sql_mode
;
thd
->
count_cuted_fields
=
orig_count_cuted_fields
;
if
(
tmp
)
thd
->
change_item_tree
(
item
,
tmp
);
return
1
;
// Item was replaced
...
...
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