| 
    MySQL 5.6.14 Source Code Document
    
   | 
 


Public Member Functions | |
| String | tableName () | 
| void | createInstances (int numberOfInstances) | 
| void | testDeleteEqualByPrimaryKey () | 
| void | testDeleteEqualByUniqueKey () | 
| void | testDeleteEqualByBtreeIndex () | 
| void | testDeleteEqualByTableScan () | 
| void | testDeleteRangeByBtreeIndex () | 
| void | testDeleteRangeByTableScan () | 
  Public Member Functions inherited from jdbctest.JDBCQueryTest | |
| void | localSetUp () | 
| void | localTearDown () | 
| void | createAllPrimitiveInstance (int i) | 
Additional Inherited Members | |
  Protected Member Functions inherited from jdbctest.JDBCQueryTest | |
| int | getNumberOfInstances () | 
| void | betweenQuery (String column, String expectedIndex, Object low, Object high, int...expected) | 
| void | equalQuery (String column, String expectedIndex, int parameter, int...expected) | 
| void | deleteAll () | 
| void | deleteEqualQuery (String column, String expectedIndex, int i, int expected) | 
| void | deleteGreaterThanAndLessThanQuery (String column, String expectedIndex, int i, int j, int expected) | 
| void | createAllPrimitivesInstances (Session session, int number) | 
| AllPrimitives | createAllPrimitiveInstance (Session session, int i) | 
  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.AbstractClusterJModelTest | |
| static TimeZone | localSystemTimeZone = TimeZone.getDefault() | 
| static final long | ONE_SECOND = 1000L | 
| static final long | ONE_MINUTE = 1000L * 60L | 
| static final long | ONE_HOUR = 1000L * 60L * 60L | 
| static final long | TEN_HOURS = 1000L * 60L * 60L * 10L | 
| static final long | ONE_DAY = 1000L * 60L * 60L * 24L | 
| static Object[] | dn2idPK = setupDn2idPK() | 
Definition at line 20 of file DeleteQueryAllPrimitivesTest.java.
      
  | 
  inline | 
Test delete queries using AllPrimitives.
drop table if exists allprimitives; create table allprimitives ( id int not null primary key,
int_not_null_hash int not null, int_not_null_btree int not null, int_not_null_both int not null, int_not_null_none int not null, int_null_hash int, int_null_btree int, int_null_both int, int_null_none int,
byte_not_null_hash tinyint not null, byte_not_null_btree tinyint not null, byte_not_null_both tinyint not null, byte_not_null_none tinyint not null, byte_null_hash tinyint, byte_null_btree tinyint, byte_null_both tinyint, byte_null_none tinyint,
short_not_null_hash smallint not null, short_not_null_btree smallint not null, short_not_null_both smallint not null, short_not_null_none smallint not null, short_null_hash smallint, short_null_btree smallint, short_null_both smallint, short_null_none smallint,
long_not_null_hash bigint not null, long_not_null_btree bigint not null, long_not_null_both bigint not null, long_not_null_none bigint not null, long_null_hash bigint, long_null_btree bigint, long_null_both bigint, long_null_none bigint
Reimplemented from jdbctest.JDBCQueryTest.
Definition at line 65 of file DeleteQueryAllPrimitivesTest.java.