~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/warnings.result

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
drop table t1;
169
169
set table_type=MYISAM;
170
170
Warnings:
171
 
Warning 1543    The syntax 'table_type' is deprecated and will be removed in MySQL 5.2. Please use 'storage_engine' instead
 
171
Warning 1287    The syntax 'table_type' is deprecated and will be removed in MySQL 5.2. Please use 'storage_engine' instead
172
172
create table t1 (a int);
173
173
insert into t1 (a) values (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);
174
174
update t1 set a='abc';