~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to mysql-test/r/symlink.result

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-02 16:10:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070402161053-zkil9hjq9k5p1uzv
Tags: 5.0.37-0ubuntu1
* New upstream bugfix release.
  - Fixes replication failure with auto-increment and on duplicate key
    update, a regression introduced into 5.0.24. (LP: #95821)
* debian/control: Set Ubuntu maintainer.
* debian/rules: Change comments from 'Debian etch' to 'Ubuntu 7.04'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
  `i` int(11) default NULL
112
112
) ENGINE=MyISAM DEFAULT CHARSET=latin1
113
113
drop table t1;
 
114
show create table t1;
 
115
Table   Create Table
 
116
t1      CREATE TEMPORARY TABLE `t1` (
 
117
  `a` int(11) default NULL
 
118
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQLTEST_VARDIR/log/'
 
119
show create table t1;
 
120
Table   Create Table
 
121
t1      CREATE TEMPORARY TABLE `t1` (
 
122
  `a` int(11) default NULL
 
123
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQLTEST_VARDIR/log/'
 
124
create table t1 (a int) engine=myisam select 42 a;
 
125
select * from t1;
 
126
a
 
127
9
 
128
select * from t1;
 
129
a
 
130
99
 
131
select * from t1;
 
132
a
 
133
42
 
134
drop table t1;
 
135
End of 4.1 tests
 
136
End of 5.0 tests