MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
com.mysql.clusterj.jpatest.model.TimeAsSqlTimeTypes Class Reference
Inheritance diagram for com.mysql.clusterj.jpatest.model.TimeAsSqlTimeTypes:
Collaboration diagram for com.mysql.clusterj.jpatest.model.TimeAsSqlTimeTypes:

Public Member Functions

int getId ()
void setId (int id)
Time getTime_not_null_hash ()
void setTime_not_null_hash (Time value)
Time getTime_not_null_btree ()
void setTime_not_null_btree (Time value)
Time getTime_not_null_both ()
void setTime_not_null_both (Time value)
Time getTime_not_null_none ()
void setTime_not_null_none (Time value)

Detailed Description

Schema

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

time_not_null_hash time, time_not_null_btree time, time_not_null_both time, time_not_null_none time

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

create unique index idx_time_not_null_hash using hash on timetypes(time_not_null_hash); create index idx_time_not_null_btree on timetypes(time_not_null_btree); create unique index idx_time_not_null_both on timetypes(time_not_null_both);

Definition at line 49 of file TimeAsSqlTimeTypes.java.


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