martin/tests/fixtures
Lucas b3fb720a94
Retrieve function source description from comments (#829)
If a PostgreSQL function has an SQL comment, it will try to parse as
JSON and use its values to override the auto-generated TileJSON. It is
recommended to use this form when creating comments to ensure valid JSON
values.

```sql
DO $do$ BEGIN
    EXECUTE 'COMMENT ON FUNCTION YOUR_FUNCTION (ARG1_TYPE,ARG2_TYPE,..ARGN_TYPE) IS $tj$' || $$
    {
      "description": "description override",
      ...
    }
    $$::json || '$tj$';
END $do$;
```

Partially implements #822
2023-08-27 16:46:56 +00:00
..
files Add flat hashing table format (#808) 2023-08-16 10:22:01 -07:00
functions Retrieve function source description from comments (#829) 2023-08-27 16:46:56 +00:00
sprites Add dynamic sprites support (#715) 2023-06-16 08:19:47 -04:00
tables adds support for id_column in tables for auto_publish (#790) 2023-08-13 02:06:23 +00:00
initdb-dc.sh Refactor CI tests into separate scripts (#432) 2022-10-25 14:54:36 -04:00
initdb.sh Improve auto-publish usability (#795) 2023-08-03 23:51:10 +02:00
vtzero-check Implement postgres auto-publish (#546) 2023-01-03 16:09:41 +00:00
vtzero-show Implement postgres auto-publish (#546) 2023-01-03 16:09:41 +00:00