~james-page/ubuntu/precise/mysql-5.5/misc-fixes

« back to all changes in this revision

Viewing changes to mysql-test/t/partition_cache.test

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-06-11 07:34:33 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120611073433-l9za2ni4ipp848y3
Tags: 5.5.24-0ubuntu0.12.04.1
* SECURITY UPDATE: Update to 5.5.24 to fix security issues (LP: #1011371)
  - http://dev.mysql.com/doc/refman/5.5/en/news-5-5-24.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# t/cache_innodb.test
 
2
#
 
3
# Last update:
 
4
# 2006-07-26 ML test refactored (MySQL 5.1)
 
5
#               main code t/innodb_cache.test --> include/query_cache.inc
 
6
#               new wrapper t/cache_innodb.test
 
7
#
 
8
 
 
9
--source include/have_query_cache.inc
 
10
 
 
11
--source include/have_innodb.inc
 
12
--source include/have_partition.inc
 
13
let $engine_type= InnoDB;
 
14
# Using SELECT to get a space as first character.
 
15
let $partitions_a= `SELECT ' PARTITION BY KEY (a) PARTITIONS 3'`;
 
16
let $partitions_id= `SELECT ' PARTITION BY HASH (id) PARTITIONS 3'`;
 
17
let $partitions_s1= `SELECT ' PARTITION BY KEY (s1) PARTITIONS 3'`;
 
18
# partitioning does not support FOREIGN KEYs
 
19
let $test_foreign_keys= 0;
 
20
 
 
21
--source include/query_cache.inc