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

Public Member Functions

int getId ()
void setId (int id)
Date getTime_not_null_hash ()
void setTime_not_null_hash (Date value)
Date getTime_not_null_btree ()
void setTime_not_null_btree (Date value)
Date getTime_not_null_both ()
void setTime_not_null_both (Date value)
Date getTime_not_null_none ()
void setTime_not_null_none (Date 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 51 of file TimeAsUtilDateTypes.java.


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