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

Public Member Functions

int getId ()
void setId (int id)
Timestamp getTimestamp_not_null_hash ()
void setTimestamp_not_null_hash (Timestamp value)
Timestamp getTimestamp_not_null_btree ()
void setTimestamp_not_null_btree (Timestamp value)
Timestamp getTimestamp_not_null_both ()
void setTimestamp_not_null_both (Timestamp value)
Timestamp getTimestamp_not_null_none ()
void setTimestamp_not_null_none (Timestamp 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 51 of file TimestampAsSqlTimestampTypes.java.


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