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

Public Member Functions

int getId ()
void setId (int id)
Timestamp getDatetime_not_null_hash ()
void setDatetime_not_null_hash (Timestamp value)
Timestamp getDatetime_not_null_btree ()
void setDatetime_not_null_btree (Timestamp value)
Timestamp getDatetime_not_null_both ()
void setDatetime_not_null_both (Timestamp value)
Timestamp getDatetime_not_null_none ()
void setDatetime_not_null_none (Timestamp 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 60 of file DatetimeAsSqlTimestampTypes.java.


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