Commit 69a9a39d authored by Sinisa@sinisa.nasamreza.org's avatar Sinisa@sinisa.nasamreza.org
Browse files

Merge sinisa@work.mysql.com:/home/bk/mysql

into sinisa.nasamreza.org:/mnt/work/mysql
parents 42d46eb9 54594ebc
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -46929,6 +46929,9 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.53
@itemize @bullet
@item
Fixed a bug with BDB @code[ALTER TABLE] with dropping column, and shutdown 
immediately thereafter.
@item
Fixed problem with @code{UNSIGNED BIGINT} on AIX (again).
@item
Fixed bug in pthread_mutex_trylock() on HPUX 11.0
+4 −0
Original line number Diff line number Diff line
objid	tablename	oid	test
1	t1	4	9
2	metatable	1	9
3	metaindex	1	9
+4 −0
Original line number Diff line number Diff line
objid	tablename	oid
1	t1	4
2	metatable	1
3	metaindex	1
+12 −0
Original line number Diff line number Diff line
-- source include/have_bdb.inc

#
# Small basic test for ALTER TABLE bug ..
#
drop table if exists t1;
create table t1(objid BIGINT not null, tablename  varchar(64), oid BIGINT not null, test BIGINT,  PRIMARY KEY (objid), UNIQUE(tablename))  type=BDB;
insert into t1 values(1, 't1',4,9);
insert into t1 values(2, 'metatable',1,9);
insert into t1 values(3, 'metaindex',1,9 );
select * from t1;
alter table t1 drop column test;
+3 −0
Original line number Diff line number Diff line
-- source include/have_bdb.inc
select * from t1;
drop table t1;
 No newline at end of file
Loading