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.DatetimeAsUtilDateTypes Class Reference
Inheritance diagram for com.mysql.clusterj.jpatest.model.DatetimeAsUtilDateTypes:
Collaboration diagram for com.mysql.clusterj.jpatest.model.DatetimeAsUtilDateTypes:

Public Member Functions

int getId ()
void setId (int id)
Date getDatetime_not_null_hash ()
void setDatetime_not_null_hash (Date value)
Date getDatetime_not_null_btree ()
void setDatetime_not_null_btree (Date value)
Date getDatetime_not_null_both ()
void setDatetime_not_null_both (Date value)
Date getDatetime_not_null_none ()
void setDatetime_not_null_none (Date value)

Detailed Description

Schema

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

datetime_null_hash datetime, datetime_null_btree datetime, datetime_null_both datetime, datetime_null_none datetime,

datetime_not_null_hash datetime, datetime_not_null_btree datetime, datetime_not_null_both datetime, datetime_not_null_none datetime

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

create unique index idx_datetime_null_hash using hash on datetimetypes(datetime_null_hash); create index idx_datetime_null_btree on datetimetypes(datetime_null_btree); create unique index idx_datetime_null_both on datetimetypes(datetime_null_both);

create unique index idx_datetime_not_null_hash using hash on datetimetypes(datetime_not_null_hash); create index idx_datetime_not_null_btree on datetimetypes(datetime_not_null_btree); create unique index idx_datetime_not_null_both on datetimetypes(datetime_not_null_both);

Definition at line 57 of file DatetimeAsUtilDateTypes.java.


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