Remove deprecated ExtendedServer query methods - use query.usingTransaction() instead

Removing all the deprecated query methods from ExtendedServer. Migrate to passing
the explicit transaction to the query using query.usingTransaction() instead.
This commit is contained in:
Rob Bygrave
2023-06-01 19:45:17 +12:00
parent 59a3766a53
commit 4878ca47b5
3 changed files with 137 additions and 168 deletions
@@ -44,7 +44,7 @@ public class ExtendedServerTest extends BaseTestCase {
// obtain extended API ... such that we can execute the
// query using an explicit transaction
List<Customer> customers = server.extended().findList(query, transaction);
List<Customer> customers = query.usingTransaction(transaction).findList();
assertThat(customers).isNotEmpty();
transaction.commit();