~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# suite/funcs_1/t/is_columns_myisam.test
 
2
#
 
3
# Check the content of information_schema.columns about tables within
 
4
# the databases created by the user.
 
5
# Variant for storage engine MyISAM and the non embedded server
 
6
#    The expected results must equal is_columns_myisam_embedded except that
 
7
#    that the privilege system works (affects some result sets).
 
8
#
 
9
# Author:
 
10
# 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of
 
11
#                           testsuite funcs_1
 
12
#                   Create this script based on older scripts and new code.
 
13
#
 
14
 
 
15
--source include/not_embedded.inc
 
16
let $engine_type= MyISAM;
 
17
SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
 
18
--source suite/funcs_1/datadict/datadict_load.inc
 
19
 
 
20
# We look only for the tables created by datadict_load.inc.
 
21
let $my_where = WHERE table_schema LIKE 'test%';
 
22
--source suite/funcs_1/datadict/columns.inc
 
23
 
 
24
--source suite/funcs_1/include/cleanup.inc