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

Public Member Functions

int getId ()
void setId (int id)
BigDecimal getDecimal_null_hash ()
void setDecimal_null_hash (BigDecimal decimalNullHash)
BigDecimal getDecimal_null_btree ()
void setDecimal_null_btree (BigDecimal decimalNullBtree)
BigDecimal getDecimal_null_both ()
void setDecimal_null_both (BigDecimal decimalNullBoth)
BigDecimal getDecimal_null_none ()
void setDecimal_null_none (BigDecimal decimalNullNone)

Detailed Description

Schema

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

decimal_null_hash decimal(10,5), decimal_null_btree decimal(10,5), decimal_null_both decimal(10,5), decimal_null_none decimal(10,5)

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

create unique index idx_decimal_null_hash using hash on decimaltypes(decimal_null_hash); create index idx_decimal_null_btree on decimaltypes(decimal_null_btree); create unique index idx_decimal_null_both on decimaltypes(decimal_null_both);

Definition at line 47 of file DecimalTypes.java.


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