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

Public Member Functions

int getId ()
void setId (int id)
Short getYear_null_hash ()
void setYear_null_hash (Short value)
Short getYear_null_btree ()
void setYear_null_btree (Short value)
Short getYear_null_both ()
void setYear_null_both (Short value)
Short getYear_null_none ()
void setYear_null_none (Short value)
short getYear_not_null_hash ()
void setYear_not_null_hash (short value)
short getYear_not_null_btree ()
void setYear_not_null_btree (short value)
short getYear_not_null_both ()
void setYear_not_null_both (short value)
short getYear_not_null_none ()
void setYear_not_null_none (short value)

Detailed Description

Schema

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

year_null_hash year, year_null_btree year, year_null_both year, year_null_none year,

year_not_null_hash year, year_not_null_btree year, year_not_null_both year, year_not_null_none year

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

create unique index idx_year_null_hash using hash on yeartypes(year_null_hash); create index idx_year_null_btree on yeartypes(year_null_btree); create unique index idx_year_null_both on yeartypes(year_null_both);

create unique index idx_year_not_null_hash using hash on yeartypes(year_not_null_hash); create index idx_year_not_null_btree on yeartypes(year_not_null_btree); create unique index idx_year_not_null_both on yeartypes(year_not_null_both);

Definition at line 60 of file YearTypes.java.


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