Commit 4d1c68f8 authored by unknown's avatar unknown
Browse files

Merge acurtis@bk-internal.mysql.com:/home/bk/mysql-4.0

into ltantony.mysql.com:/usr/home/antony/work2/megapatch-4.0


BitKeeper/etc/logging_ok:
  auto-union
parents 1cdcc4f6 cdfc786f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
-- require r/have_outfile.require
disable_query_log;
select load_file(concat(@tmpdir,"/outfile.test"));
--exec rm $MYSQL_TEST_DIR/var/tmp/outfile.test
enable_query_log;
+1 −0
Original line number Diff line number Diff line
eval select "Outfile OK" into outfile "$MYSQL_TEST_DIR/var/tmp/outfile.test"; 
+20 −0
Original line number Diff line number Diff line
@@ -386,3 +386,23 @@ Incorrect table name 't1\\'
rename table t1 to `t1\\`;
Incorrect table name 't1\\'
drop table t1;
drop table if exists t1, t2;
create table t1 ( a varchar(10) not null primary key ) engine=myisam;
create table t2 ( a varchar(10) not null primary key ) engine=merge union=(t1);
flush tables;
alter table t1 modify a varchar(10);
show create table t2;
Table	Create Table
t2	CREATE TABLE `t2` (
  `a` varchar(10) NOT NULL default '',
  PRIMARY KEY  (`a`)
) TYPE=MRG_MyISAM UNION=(t1)
flush tables;
alter table t1 modify a varchar(10) not null;
show create table t2;
Table	Create Table
t2	CREATE TABLE `t2` (
  `a` varchar(10) NOT NULL default '',
  PRIMARY KEY  (`a`)
) TYPE=MRG_MyISAM UNION=(t1)
drop table if exists t1, t2;
+3 −0
Original line number Diff line number Diff line
load_file(concat(@tmpdir,"/outfile.test"))
Outfile OK
+953 B

File added.

No diff preview for this file type.

Loading