martin/tests/fixtures/functions
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
..
function_Mixed_Name.sql Retrieve function source description from comments (#829) 2023-08-27 16:46:56 +00:00
function_null_row2.sql Fix handling for null-returning PG queries (#521) 2022-12-15 14:12:55 +02:00
function_null_row.sql Fix handling for null-returning PG queries (#521) 2022-12-15 14:12:55 +02:00
function_null.sql Fix handling for null-returning PG queries (#521) 2022-12-15 14:12:55 +02:00
function_zoom_xy.sql Support z,x,y and record-returning funcs, table rework (#380) 2022-12-10 16:20:42 +02:00
function_zxy2.sql Support z,x,y and record-returning funcs, table rework (#380) 2022-12-10 16:20:42 +02:00
function_zxy_query_jsonb.sql Improve Coverage tooling (#535) 2022-12-27 06:56:27 +00:00
function_zxy_query_test.sql Support z,x,y and record-returning funcs, table rework (#380) 2022-12-10 16:20:42 +02:00
function_zxy_query.sql Retrieve function source description from comments (#829) 2023-08-27 16:46:56 +00:00
function_zxy_row_key.sql Support z,x,y and record-returning funcs, table rework (#380) 2022-12-10 16:20:42 +02:00
function_zxy_row.sql Support z,x,y and record-returning funcs, table rework (#380) 2022-12-10 16:20:42 +02:00
function_zxy.sql Support z,x,y and record-returning funcs, table rework (#380) 2022-12-10 16:20:42 +02:00