db: Replace deprecated 'FromClause.select().whereclause' parameter

Resolve the following sqlalchemy.exc.RemovedIn20Warning warning:

  The FromClause.select().whereclause parameter is deprecated and will
  be removed in version 2.0.  Please make use of the Select.where()
  method to add WHERE criteria to the SELECT statement.

For more information, refer to http://sqlalche.me/e/b8d9.

Change-Id: Ie93f52777da62fa98e8b33d4d1ca0ae6da4de9e0
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2021-07-15 13:47:01 +01:00
parent b3fe04f081
commit 3aca87e4fc
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class CreateIncompleteAllocationsMixin(object):
sa.select(sa.func.count('*')).select_from(USER_TBL))
self.assertEqual(0, user_count)
# Verify there are no consumer records for the missing consumers
sel = CONSUMER_TBL.select(
sel = CONSUMER_TBL.select().where(
CONSUMER_TBL.c.uuid.in_([c1_missing_uuid, c2_missing_uuid]))
res = ctx.session.execute(sel).fetchall()
self.assertEqual(0, len(res))