Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 83edcc6

Browse files
authored
Merge pull request #125 from Pazus/hotfix/cache-invalidation
fixed cache invalidation comporator
2 parents a339f61 + 7900633 commit 83edcc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/core/ut_suite_manager.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ create or replace package body ut_suite_manager is
312312
begin
313313
-- Currently cache invalidation on DDL is not implemented so schema is rescaned each time
314314
if not g_schema_suites.exists(a_schema_name)
315-
or g_schema_suites(a_schema_name).changed_at < get_schema_max_ddl(a_schema_name) then
315+
or g_schema_suites(a_schema_name).changed_at <= get_schema_max_ddl(a_schema_name) then
316316
ut_utils.debug_log('Rescanning schema ' || a_schema_name);
317317
config_schema(a_schema_name);
318318
end if;

0 commit comments

Comments
 (0)