mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
d3611af58d
event catalog: - `hdb_catalog` is no longer automatically created - catalog is initialised when the first event trigger is created - catalog initialisation is done during the schema cache build, using `ArrowCache` so it is only run in response to a change to the set of event triggers event queue: - `processEventQueue` thread is prevented from starting when `HASURA_GRAPHQL_EVENTS_FETCH_INTERVAL=0` - `processEventQueue` thread only processes sources for which at least one event trigger exists in some table in the source Co-authored-by: Anon Ray <616387+ecthiender@users.noreply.github.com> GitOrigin-RevId: 73f256465d62490cd2b59dcd074718679993d4fe
5 lines
245 B
SQL
5 lines
245 B
SQL
DROP TABLE IF EXISTS hdb_catalog.hdb_source_catalog_version;
|
|
DROP FUNCTION IF EXISTS hdb_catalog.insert_event_log(text, text, text, text, json);
|
|
DROP TABLE IF EXISTS hdb_catalog.event_invocation_logs;
|
|
DROP TABLE IF EXISTS hdb_catalog.event_log;
|