~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Tests checking the content of the information_schema tables
 
2
#      character_sets
 
3
#      collations
 
4
#      collation_character_set_applicability
 
5
#
 
6
# Content variant 1 which should fit to
 
7
#    Enterprise or Classic builds (binaries provided by MySQL)
 
8
#    Pushbuilds
 
9
#    Source builds without "max"
 
10
#
 
11
# Please read suite/funcs_1/datadict/charset_collation.inc for
 
12
# additional information.
 
13
#
 
14
# Created:
 
15
# 2007-12-18 mleich - remove the unstable character_set/collation subtests
 
16
#                     from include/datadict-master.inc
 
17
#                   - create this new test
 
18
#
 
19
 
 
20
if (`SELECT EXISTS (SELECT 1 FROM information_schema.collations
 
21
                    WHERE collation_name = 'utf8mb3_general_cs')
 
22
       OR (    @@version_comment NOT LIKE '%Source%'
 
23
           AND @@version_comment NOT LIKE '%Enterprise%'
 
24
           AND @@version_comment NOT LIKE '%Classic%'
 
25
           AND @@version_comment NOT LIKE '%Pushbuild%')`)
 
26
{
 
27
  skip Test needs Enterprise, Classic , Pushbuild or Source-without-max build;
 
28
}
 
29
 
 
30
--source suite/funcs_1/datadict/charset_collation.inc