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

Public Member Functions

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

Detailed Description

Schema

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

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

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

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

Definition at line 47 of file BigIntegerTypes.java.


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