MySQL 5.6.14 Source Code Document
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
ctype_filesort.inc
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 a;
15
drop
table
t1;
mysql-test
include
ctype_filesort.inc
Generated on Sat Nov 9 2013 01:24:50 for MySQL 5.6.14 Source Code Document by
1.8.1.2