| Interface and Description |
|---|
| com.feedzai.commons.sql.abstraction.FailureListener
Use
BatchListener instead. |
| Method and Description |
|---|
| com.feedzai.commons.sql.abstraction.ddl.DbFk.Builder.addForeignColumn(String...)
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this name is wrong and will eventually be removed ─ use
DbFk.Builder.addReferencedColumn(String...)
instead. |
| com.feedzai.commons.sql.abstraction.ddl.DbFk.Builder.addForeignColumns(Collection<String>)
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this name is wrong and will eventually be removed ─ use
DbFk.Builder.addReferencedColumns(Collection)
instead. |
| com.feedzai.commons.sql.abstraction.batch.AbstractBatch.convertToBatchListener(FailureListener)
The
FailureListener is deprecated and this method will be removed once it is removed. |
| com.feedzai.commons.sql.abstraction.batch.DefaultBatch.create(DatabaseEngine, String, int, long, long, FailureListener) |
| com.feedzai.commons.sql.abstraction.batch.DefaultBatch.create(DatabaseEngine, String, int, long, long, FailureListener, int, long) |
| com.feedzai.commons.sql.abstraction.engine.DatabaseEngine.createBatch(int, long, String, FailureListener) |
| com.feedzai.commons.sql.abstraction.ddl.DbFk.Builder.foreignTable(String)
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this name is wrong and will eventually be removed ─ use
DbFk.Builder.referencedTable(String)
instead. |
| com.feedzai.commons.sql.abstraction.ddl.DbFk.getForeignColumns()
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this name is wrong and will eventually be removed ─ use
DbFk.getReferencedColumns() instead. |
| com.feedzai.commons.sql.abstraction.ddl.DbFk.getForeignTable()
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this method was used to get the name of the referenced table, which is the parent table, thus the
name of the method is wrong and it will eventually be removed ─ use
DbFk.getReferencedTable() instead. |
| com.feedzai.commons.sql.abstraction.exceptions.DatabaseEngineRetryableRuntimeException.isRetryable()
only implemented here to avoid breaking changes with the availability of this method in the super class.
|
| com.feedzai.commons.sql.abstraction.engine.DatabaseEngineRuntimeException.isRetryable()
use
DatabaseEngineRetryableRuntimeException
instead. |
Copyright © 2021 Feedzai. All rights reserved.