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

Public Member Functions

int getId ()
void setId (int id)
BigInteger getDecimal_null_hash ()
void setDecimal_null_hash (BigInteger value)
BigInteger getDecimal_null_btree ()
void setDecimal_null_btree (BigInteger value)
BigInteger getDecimal_null_both ()
void setDecimal_null_both (BigInteger value)
BigInteger getDecimal_null_none ()
void setDecimal_null_none (BigInteger value)

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 51 of file BigIntegerTypes.java.


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