mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
3c01125fc5
* feat: add composite sources support WIP * feat: handle empty composite sources * fix: decompose queries * docs: add docs on composite sources * ci: push docker image * test: add composite source tests
16 lines
440 B
Bash
Executable File
16 lines
440 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Perform all actions as $POSTGRES_USER
|
|
export PGUSER="$POSTGRES_USER"
|
|
|
|
echo "Loading Martin fixtures into $POSTGRES_DB"
|
|
|
|
psql --dbname="$POSTGRES_DB" -f /fixtures/TileBBox.sql
|
|
psql --dbname="$POSTGRES_DB" -f /fixtures/table_source.sql
|
|
psql --dbname="$POSTGRES_DB" -f /fixtures/function_source.sql
|
|
|
|
psql --dbname="$POSTGRES_DB" -f /fixtures/points1_source.sql
|
|
psql --dbname="$POSTGRES_DB" -f /fixtures/points2_source.sql
|