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

« back to all changes in this revision

Viewing changes to mysql-test/suite/row_lock/t/ndb_row_lock_big_tab_1.test

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug, Mathias Gug, Chuck Short
  • Date: 2008-01-25 04:10:49 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20080125041049-9v0lza2vm6jfv1uf
Tags: 5.0.51-3ubuntu1
[Mathias Gug]
* Merge from debian unstable, remaining changes:
  - debian/control:
    - Set Maintainer to Ubuntu Core dev. Move Debian maintainer
      to XSBC-Original-Maintainer.
    - Add mysql-doc-5.0 as a Suggests to mysql-client-5.0,  mysql-server-5.0
      and libmysqlclient15-dev.
  - debian/rules: Apply same configuration options on lpia as for i386.
* debian/control:
  - Preprend XS-Original- to Vcs-{Browser,Svn}.
* debian/rules:
  - Support DEB_BUILD_OPTIONS option 'nocheck' to skip tests.
* Dropped patches:
  - debian/patches/91_bug29389.dpatch:
      fix for mysql bug 27383 which causes mysql-test 'mysql_client_test'
      to fail due to gcc 4.x optimizations.
  - debian/libmysqlclient15-dev.files, debian/mysql-client-5.0.files,
    debian/mysql-server-5.0.files: man pages are GPLed now.
* Improved error message when unable to connect using debian-sys-maint. (LP:
  #153868)

[Chuck Short]
* Replcaed --with-comment="Debian" with --with-comment="Ubuntu" in debian/rules  (LP: #134384)
* Added note about the "/etc/mysql/conf.d" directory in my.cnf (LP: #136225)
* Fixed mysqlhotcopy failure. (LP: #162393)
* Fixed mysqlslowdump usage.  Added patch from Arnold Daniels <info@adaniels.nl>. (LP: #183762)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--source include/have_ndb.inc
2
 
let $engine= NDB;
3
 
let $nbrows= 200;
4
 
let $select= SELECT t1.i,t2.i FROM t1,t2 WHERE t1.i < t1.k % 2 = 0 AND t2.k=t1.k LOCK IN SHARE MODE;
5
 
let $indext1= CREATE INDEX ixi ON t1 (i);
6
 
let $indext2= CREATE INDEX ixi ON t2 (i);
7
 
--source suite/row_lock/include/row_lock_big_tab_1.inc