~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/include/ctype_filesort.inc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Set desired charset_connection and collation_collation
 
3
# before including this file.
 
4
#
 
5
 
 
6
# The next query creates a LONGTEXT column
 
7
# using the current character_set_connection
 
8
# and collation_connection.
 
9
 
 
10
create table t1 select repeat('a',4000) a;
 
11
delete from t1;
 
12
 
 
13
insert into t1 values ('a'), ('a '), ('a\t');
 
14
select collation(a),hex(a) from t1 order by hex(a);
 
15
drop table t1;