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);
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.