[py3] Fixed cache tests.
This commit is contained in:
parent
f34de7dd6e
commit
2284419a2c
|
@ -167,7 +167,7 @@ class DatabaseCache(BaseDatabaseCache):
|
||||||
cursor.execute("SELECT COUNT(*) FROM %s" % table)
|
cursor.execute("SELECT COUNT(*) FROM %s" % table)
|
||||||
num = cursor.fetchone()[0]
|
num = cursor.fetchone()[0]
|
||||||
if num > self._max_entries:
|
if num > self._max_entries:
|
||||||
cull_num = num / self._cull_frequency
|
cull_num = num // self._cull_frequency
|
||||||
cursor.execute(
|
cursor.execute(
|
||||||
connections[db].ops.cache_key_culling_sql() % table,
|
connections[db].ops.cache_key_culling_sql() % table,
|
||||||
[cull_num])
|
[cull_num])
|
||||||
|
|
Loading…
Reference in New Issue