MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
testsuite.clusterj.model.StringTypes Interface Reference
Inheritance diagram for testsuite.clusterj.model.StringTypes:
Collaboration diagram for testsuite.clusterj.model.StringTypes:

Public Member Functions

int getId ()
void setId (int id)
String getString_null_hash ()
void setString_null_hash (String value)
String getString_null_btree ()
void setString_null_btree (String value)
String getString_null_both ()
void setString_null_both (String value)
String getString_null_none ()
void setString_null_none (String value)
String getString_not_null_hash ()
void setString_not_null_hash (String value)
String getString_not_null_btree ()
void setString_not_null_btree (String value)
String getString_not_null_both ()
void setString_not_null_both (String value)
String getString_not_null_none ()
void setString_not_null_none (String value)

Detailed Description

Schema

drop table if exists stringtypes; create table stringtypes ( id int not null primary key,

string_null_hash varchar(20), string_null_btree varchar(300), string_null_both varchar(20), string_null_none varchar(300),

string_not_null_hash varchar(300), string_not_null_btree varchar(20), string_not_null_both varchar(300), string_not_null_none varchar(20), unique key idx_string_null_hash (string_null_hash) using hash, key idx_string_null_btree (string_null_btree), unique key idx_string_null_both (string_null_both),

unique key idx_string_not_null_hash (string_not_null_hash) using hash, key idx_string_not_null_btree (string_not_null_btree), unique key idx_string_not_null_both (string_not_null_both)

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

Definition at line 62 of file StringTypes.java.


The documentation for this interface was generated from the following file: