mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 00:05:33 +02:00
merging fix
This commit is contained in:
parent
360ae7fe2c
commit
e832964174
2 changed files with 3 additions and 0 deletions
|
|
@ -693,6 +693,7 @@ create table t1(pt GEOMETRY);
|
|||
alter table t1 add primary key pti(pt);
|
||||
ERROR 42000: BLOB/TEXT column 'pt' used in key specification without a key length
|
||||
alter table t1 add primary key pti(pt(20));
|
||||
drop table t1;
|
||||
create table t1 (g GEOMETRY);
|
||||
select * from t1;
|
||||
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
||||
|
|
|
|||
|
|
@ -408,6 +408,8 @@ create table t1(pt GEOMETRY);
|
|||
--error 1170
|
||||
alter table t1 add primary key pti(pt);
|
||||
alter table t1 add primary key pti(pt(20));
|
||||
drop table t1;
|
||||
|
||||
--enable_metadata
|
||||
create table t1 (g GEOMETRY);
|
||||
select * from t1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue