You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[reporter="schoi", created="Fri, 24 Feb 2006 15:09:54 -0500 (GMT-05:00)"]
if non-space characters are truncated on store, sql should fail, but doesn't.
Repro:
----------
create schema s;
set schema 's';
create table ch (c char(2) primary key);
insert into ch values('abcd');
select * from ch;
+-----+
| C |
+-----+
| ab |
+-----+
create table varch (v varchar(2) primary key);
insert into varch values('abcd');
select * from varch;
+-----+
| V |
+-----+
| ab |
+-----+
The text was updated successfully, but these errors were encountered:
[reporter="schoi", created="Fri, 24 Feb 2006 15:09:54 -0500 (GMT-05:00)"]
if non-space characters are truncated on store, sql should fail, but doesn't.
Repro:
----------
create schema s;
set schema 's';
create table ch (c char(2) primary key);
insert into ch values('abcd');
select * from ch;
+-----+
| C |
+-----+
| ab |
+-----+
create table varch (v varchar(2) primary key);
insert into varch values('abcd');
select * from varch;
+-----+
| V |
+-----+
| ab |
+-----+
The text was updated successfully, but these errors were encountered: