HHH-16651 change a test since we don't use array batch loader for one id anymore

This commit is contained in:
Gavin 2023-05-21 23:18:07 +02:00 committed by Gavin King
parent 475aefb434
commit 8bf5bb0d98

View File

@ -92,7 +92,7 @@ public void tesGetAgency(SessionFactoryScope scope) {
"select a1_0.agency_id,a1_0.agency_txt from agency_table a1_0 where a1_0.agency_id=?"
);
assertThat( executedQueries.get( 1 ).toLowerCase() ).isEqualTo(
"select a1_0.agency_id,a1_0.agency_detail from agency_detail_table a1_0 where array_contains(?,a1_0.agency_id)"
"select a1_0.agency_id,a1_0.agency_detail from agency_detail_table a1_0 where a1_0.agency_id=?"
);
assertThat( executedQueries.get( 2 ).toLowerCase() ).isEqualTo(