~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysql_protocol.result

  • Committer: lbieber
  • Date: 2010-09-24 22:32:14 UTC
  • mfrom: (1792.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100924223214-fy0e0bfu7yy5zeup
Merge Paul - fix bug 641033 - fix basic_create_select test
Merge Paul - fix bug 641035 - basic_index_lookup and basic_pkey_index_reverse_scan don't always use index
Merge Brian - Adding have_linux to disabled pbxt tests.
Merge Andrew - drizzledump mysql migration tool

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DROP TABLE IF EXISTS t1;
2
2
CREATE TABLE t1(a int, key (a));
3
3
INSERT INTO t1 VALUES (1), (2);
 
4
 
4
5
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
5
6
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
6
7
DROP TABLE IF EXISTS `t1`;
12
13
ALTER TABLE `t1` DISABLE KEYS;
13
14
INSERT INTO `t1` VALUES (1),(2);
14
15
ALTER TABLE `t1` ENABLE KEYS;
 
16
 
15
17
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
16
18
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
17
19
DROP TABLE t1;