
Key: |
CORE-5987
|
Type: |
Bug
|
Status: |
Open
|
Priority: |
Critical
|
Assignee: |
Unassigned
|
Reporter: |
Dmitry Lendel
|
Votes: |
0
|
Watchers: |
3
|
If you were logged in you would be able to see more operations.
|
|
|
CREATE TABLE TEST (
TEXT VARCHAR(10))
insert into test (text) values ('111')
select * from test where text=?text
With param value '12345678912345678' no errors
select * from test where (text=?text or text=?text)
With param value '12345678912345678'
Error message is "arithmetic exception numeric overflow or string truncation"
|
Description
|
CREATE TABLE TEST (
TEXT VARCHAR(10))
insert into test (text) values ('111')
select * from test where text=?text
With param value '12345678912345678' no errors
select * from test where (text=?text or text=?text)
With param value '12345678912345678'
Error message is "arithmetic exception numeric overflow or string truncation" |
Show » |
|