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
286d6f23
Commit
286d6f23
authored
Jan 20, 2024
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed main.strict test to work with icc compiler
parent
d2c431bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/main/strict.result
mysql-test/main/strict.result
+1
-1
mysql-test/main/strict.test
mysql-test/main/strict.test
+1
-1
No files found.
mysql-test/main/strict.result
View file @
286d6f23
...
...
@@ -897,7 +897,7 @@ ERROR 22003: Out of range value for column 'col1' at row 1
INSERT INTO t1 (col2) VALUES ('-1.2E-3');
ERROR 22003: Out of range value for column 'col2' at row 1
UPDATE t1 SET col1 =col1 * 5000 WHERE col1 > 0;
ERROR 22003: DOUBLE value is out of range in '"test"."t1"."col1" * 5000'
Got one of the listed errors
UPDATE t1 SET col2 =col2 / 0 WHERE col2 > 0;
ERROR 22012: Division by 0
UPDATE t1 SET col2= MOD(col2,0) WHERE col2 > 0;
...
...
mysql-test/main/strict.test
View file @
286d6f23
...
...
@@ -824,7 +824,7 @@ INSERT INTO t1 (col2) VALUES (-1.1E-3);
INSERT
INTO
t1
(
col1
)
VALUES
(
'+1.8E+309'
);
--
error
1264
INSERT
INTO
t1
(
col2
)
VALUES
(
'-1.2E-3'
);
--
error
ER_DATA_OUT_OF_RANGE
--
error
ER_DATA_OUT_OF_RANGE
,
ER_WARN_DATA_OUT_OF_RANGE
UPDATE
t1
SET
col1
=
col1
*
5000
WHERE
col1
>
0
;
--
error
1365
UPDATE
t1
SET
col2
=
col2
/
0
WHERE
col2
>
0
;
...
...
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