
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Test case:
SQL> create table t (c varchar(2) character set utf8);
SQL> insert into t values ('aaaaaaaa'); -- error: ok
Statement failed, SQLCODE = -802
arithmetic exception, numeric overflow, or string truncation
SQL> insert into t values (12345678); -- pass: not ok
|
|
Description
|
Test case:
SQL> create table t (c varchar(2) character set utf8);
SQL> insert into t values ('aaaaaaaa'); -- error: ok
Statement failed, SQLCODE = -802
arithmetic exception, numeric overflow, or string truncation
SQL> insert into t values (12345678); -- pass: not ok
|
Show » |
|