Schema drop table if exists timetypes; create table timetypes ( id int not null primary key, time_not_null_hash time, time_not_null_btree time, time_not_null_both time, time_not_null_none time ) ENGINE=ndbcluster DEFAULT CHARSET=latin1; create unique index idx_time_not_null_hash using hash on timetypes(time_not_null_hash); create index idx_time_not_null_btree on timetypes(time_not_null_btree); create unique index idx_time_not_null_both on timetypes(time_not_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.