MySQL 5.6.14 Source Code Document
|
Public Member Functions | |
void | testWriteJDBCReadNDB () |
void | testWriteNDBReadJDBC () |
void | testWriteJDBCReadJDBC () |
void | testQuery () |
Additional Inherited Members | |
Protected Member Functions inherited from testsuite.clusterj.DecimalTypesTest | |
boolean | getDebug () |
int | getNumberOfInstances () |
String | getTableName () |
Object | getColumnValue (int i, int j) |
ColumnDescriptor[] | getColumnDescriptors () |
Static Protected Member Functions inherited from testsuite.clusterj.AbstractClusterJModelTest | |
static long | getMillisFor (int year, int month, int day, int hour, int minute, int second) |
static long | getMillisFor (int year, int month, int day) |
static long | getMillisFor (int days, int hour, int minute, int second) |
static void | resetLocalSystemDefaultTimeZone (Connection connection) |
static Object[] | setupDn2idPK () |
Protected Attributes inherited from testsuite.clusterj.AbstractClusterJModelTest | |
List< Employee > | employees |
List< Dn2id > | dn2ids |
List< IdBase > | instances = new ArrayList<IdBase>() |
ClassLoader | loader |
Static Protected Attributes inherited from testsuite.clusterj.DecimalTypesTest | |
static ColumnDescriptor[] | columnDescriptors |
Definition at line 22 of file DecimalTypesTest.java.
|
inline |
Query tests
Definition at line 59 of file DecimalTypesTest.java.
|
inline |
The test we want
Definition at line 53 of file DecimalTypesTest.java.
|
inline |
Test all DecimalTypes columns.
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);One of two tests in the superclass that we don't want to run
Reimplemented from testsuite.clusterj.DecimalTypesTest.
Definition at line 44 of file DecimalTypesTest.java.
|
inline |
One of two tests in the superclass that we don't want to run
Reimplemented from testsuite.clusterj.DecimalTypesTest.
Definition at line 49 of file DecimalTypesTest.java.