1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00
sql/field.cc:
  Auto merged
This commit is contained in:
unknown
2004-10-26 21:12:14 +02:00
4 changed files with 8 additions and 17 deletions

View File

@@ -796,6 +796,11 @@ insert into t1 values(1,'foo'),(2,'foobar');
select * from t1 where b like 'foob%';
a b
2 foobar
alter table t1 engine=bdb;
select * from t1 where b like 'foob%';
a b
2 foobar
drop table t1;
drop table t1;
create table t1 (
a enum('петя','вася','анюта') character set utf8 not null default 'анюта',

View File

@@ -643,6 +643,9 @@ create table t1 (
--enable_warnings
insert into t1 values(1,'foo'),(2,'foobar');
select * from t1 where b like 'foob%';
--disable_warnings
alter table t1 engine=bdb;
select * from t1 where b like 'foob%';
drop table t1;
#