1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Merge pgalbraith@bk-internal.mysql.com:/home/bk/mysql-5.1

into  govinda.patg.net:/home/patg/mysql-build/mysql-5.1-clean2
This commit is contained in:
patg@govinda.patg.net
2006-08-16 10:03:24 -07:00
554 changed files with 5432 additions and 194755 deletions

View File

@@ -175,7 +175,7 @@ Warning 1266 Using storage engine MyISAM for table 't1'
drop table t1;
set table_type=MYISAM;
Warnings:
Warning 1541 The syntax 'table_type' is deprecated and will be removed in MySQL 5.2. Please use 'storage_engine' instead.
Warning 1541 The syntax 'table_type' is deprecated and will be removed in MySQL 5.2. Please use 'storage_engine' instead
create table t1 (a int);
insert into t1 (a) values (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);
update t1 set a='abc';