mirror of
https://github.com/MariaDB/server.git
synced 2025-05-02 19:25:03 +03:00
width beyond the maximum. (Bug #6080) mysql-test/r/errors.result: Update results mysql-test/r/type_bit.result: Update results mysql-test/r/type_bit_innodb.result: Update results mysql-test/t/errors.test: Add new regression test mysql-test/t/type_bit_innodb.test: Update error code in test sql/share/errmsg.txt: Add new error message sql/sql_parse.cc: Display more appropriate error message for column creation that fails due to a non-string field with a display width that is too big.
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
drop table if exists t1;
|
|
insert into t1 values(1);
|
|
ERROR 42S02: Table 'test.t1' doesn't exist
|
|
delete from t1;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist
|
|
update t1 set a=1;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist
|
|
create table t1 (a int);
|
|
select count(test.t1.b) from t1;
|
|
ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
|
|
select count(not_existing_database.t1) from t1;
|
|
ERROR 42S02: Unknown table 'not_existing_database' in field list
|
|
select count(not_existing_database.t1.a) from t1;
|
|
ERROR 42S02: Unknown table 'not_existing_database.t1' in field list
|
|
select count(not_existing_database.t1.a) from not_existing_database.t1;
|
|
Got one of the listed errors
|
|
select 1 from t1 order by 2;
|
|
ERROR 42S22: Unknown column '2' in 'order clause'
|
|
select 1 from t1 group by 2;
|
|
ERROR 42S22: Unknown column '2' in 'group statement'
|
|
select 1 from t1 order by t1.b;
|
|
ERROR 42S22: Unknown column 't1.b' in 'order clause'
|
|
select count(*),b from t1;
|
|
ERROR 42S22: Unknown column 'b' in 'field list'
|
|
drop table t1;
|
|
create table t1 (a int(256));
|
|
ERROR 42000: Display width out of range for column 'a' (max = 255)
|
|
set sql_mode='traditional';
|
|
create table t1 (a varchar(66000));
|
|
ERROR 42000: Column length too big for column 'a' (max = 65535); use BLOB or TEXT instead
|