Skip to content

Commit

Permalink
fix: remove debugging notices
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilender-bongirwar authored Dec 9, 2024
1 parent 91b2306 commit 4dc3438
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions extension/sql/meta.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,10 @@ BEGIN
schema_name := split_part(obj.object_identity, '.', 1);
table_name := split_part(obj.object_identity, '.', 2);

RAISE NOTICE 'Event Trigger Fired for table drop: %, schema: %', table_name, schema_name;

-- Perform cleanup: delete the associated job from the vectorize.job table
DELETE FROM vectorize.job
WHERE params ->> 'table' = table_name
AND params ->> 'schema' = schema_name;

IF NOT FOUND THEN
RAISE NOTICE 'No matching job found for table: %, schema: %', table_name, schema_name;
END IF;
END IF;
END LOOP;
END;
Expand Down

0 comments on commit 4dc3438

Please sign in to comment.