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

Public Member Functions

int getId ()
void setId (int id)
Date getTimestamp_not_null_hash ()
void setTimestamp_not_null_hash (Date value)
Date getTimestamp_not_null_btree ()
void setTimestamp_not_null_btree (Date value)
Date getTimestamp_not_null_both ()
void setTimestamp_not_null_both (Date value)
Date getTimestamp_not_null_none ()
void setTimestamp_not_null_none (Date value)

Detailed Description

Schema

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

timestamp_not_null_hash timestamp, timestamp_not_null_btree timestamp, timestamp_not_null_both timestamp, timestamp_not_null_none timestamp

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

create unique index idx_timestamp_not_null_hash using hash on timestamptypes(timestamp_not_null_hash); create index idx_timestamp_not_null_btree on timestamptypes(timestamp_not_null_btree); create unique index idx_timestamp_not_null_both on timestamptypes(timestamp_not_null_both);

Definition at line 48 of file TimestampAsUtilDateTypes.java.


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