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

Public Member Functions

int getId ()
void setId (int id)
byte[] getBytes_null_hash ()
void setBytes_null_hash (byte[] value)
byte[] getBytes_null_btree ()
void setBytes_null_btree (byte[] value)
byte[] getBytes_null_both ()
void setBytes_null_both (byte[] value)
byte[] getBytes_null_none ()
void setBytes_null_none (byte[] value)

Detailed Description

Schema

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

bytes_null_hash varbinary(8), bytes_null_btree varbinary(8), bytes_null_both varbinary(8), bytes_null_none varbinary(8), key idx_bytes_null_btree (bytes_null_btree), unique key idx_bytes_null_both (bytes_null_both), unique key idx_bytes_null_hash (bytes_null_hash) using hash

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

Definition at line 49 of file ByteArrayTypes.java.


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