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);
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.