~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/funcs_1/t/is_cml_memory.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# suite/funcs_1/t/is_cml_memory.test
 
2
#
 
3
# Check the content of information_schema.columns about tables using
 
4
# UNICODE columns.
 
5
# Variant for storage engine MEMORY
 
6
#
 
7
# Author:
 
8
# 2008-06-04 mleich Create this script based on older scripts and new code.
 
9
#
 
10
 
 
11
--source include/have_ucs2.inc
 
12
 
 
13
# This test cannot be used for the embedded server because privileges
 
14
# are expected within result sets.
 
15
--source include/not_embedded.inc
 
16
 
 
17
let $engine_type= MEMORY;
 
18
SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
 
19
USE test;
 
20
--disable_warnings
 
21
DROP TABLE IF EXISTS t1;
 
22
--enable_warnings
 
23
eval CREATE TABLE t1
 
24
(
 
25
   f1 CHAR         UNICODE,
 
26
   f2 CHAR(0)      UNICODE,
 
27
   f3 CHAR(10)     UNICODE,
 
28
   f5 VARCHAR(0)   UNICODE,
 
29
   f6 VARCHAR(255) UNICODE,
 
30
   f7 VARCHAR(260) UNICODE
 
31
) ENGINE = $engine_type;
 
32
 
 
33
# We look only for the tables created here.
 
34
let $my_where = WHERE table_schema LIKE 'test%';
 
35
--source suite/funcs_1/datadict/columns.inc
 
36
 
 
37
DROP TABLE t1;