
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Test case:
create table t (b1 blob sub_type text, b2 blob sub_type text character set utf8);
-- This is correct and raise "Malformed string" error
insert into t (b2) values (x'F0');
insert into t (b1) values (x'F0');
-- This store a malformed blob
update t set b2 = b1;
|
|
Description
|
Test case:
create table t (b1 blob sub_type text, b2 blob sub_type text character set utf8);
-- This is correct and raise "Malformed string" error
insert into t (b2) values (x'F0');
insert into t (b1) values (x'F0');
-- This store a malformed blob
update t set b2 = b1; |
Show » |
|