graphql-engine/server/src-lib/Hasura/Backends/Postgres/DDL
Antoine Leblanc 04d8f068b6 Remove explicit case on the backend tag in Cache
### Description

As part of the cache building process, we create / update / migrate the catalog that each DB uses as a place to store event trigger information. The function that decides how this should be done was doing an explicit `case ... of` on the backend tag, instead of delegating to one of the backend classes. The downsides of this is that:
- it adds a "friction point" where the backend matters in the core of the engine, which is otherwise written to be almost entirely backend-agnostic
- it creates imports from deep in the engine to the `Backends`, which we try to restrict to a very small set of clearly identified files (the `Instances` files)
- it is currently implemented using a "catch all" default case, which might not always be correct for new backends

This PR makes the catalog updating process a part of `BackendMetadata`, and cleans the corresponding schema cache code.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4457
GitOrigin-RevId: 592f0eaa97a7c38f4e6d4400e1d2353aab12c97e
2022-05-05 13:44:56 +00:00
..
Source Yeet some default-extensions 2022-03-16 00:40:17 +00:00
BoolExp.hs add jsonb to string cast support for postgres (fix #6577, #2602) 2022-03-10 07:32:59 +00:00
ComputedField.hs server/bigquery: enable metadata API to add/drop computed fields to BigQuery tables 2022-05-04 14:53:31 +00:00
EventTrigger.hs server: Use quote_ident for quoting table name when using regclass 2022-05-02 13:16:55 +00:00
Function.hs server/postgres: improve fetching tables' and functions' metadata (from database) 2022-03-08 13:03:14 +00:00
RunSQL.hs Remove RQL/Types.hs 2022-04-27 13:58:47 +00:00
Source.hs Remove explicit case on the backend tag in Cache 2022-05-05 13:44:56 +00:00
Table.hs Evie/postgres/module docs 2022-02-08 09:25:35 +00:00