mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
58c44f55dd
GitOrigin-RevId: 1c8c4d60e033c8a0bc8b2beed24c5bceb7d4bcc8
56 lines
1.2 KiB
Bash
Executable File
56 lines
1.2 KiB
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Usage: ./edit-pg-dump.sh <file-name.sql>
|
|
#
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "Invalid usage: ./edit-pg-dump.sh <file-name.sql>"
|
|
fi
|
|
|
|
filename=$1
|
|
|
|
if [ ! -f $filename ] || [ "$filename" == "" ]; then
|
|
echo "file $filename does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
echo "making a copy"
|
|
cp $filename $filename.backup
|
|
|
|
echo "processing file"
|
|
|
|
# delete all comments
|
|
|
|
sed -i '/^--/d' $filename
|
|
|
|
# delete front matter
|
|
|
|
read -r -d '' lines << EOF
|
|
SET statement_timeout = 0;
|
|
SET lock_timeout = 0;
|
|
SET idle_in_transaction_session_timeout = 0;
|
|
SET client_encoding = 'UTF8';
|
|
SET standard_conforming_strings = on;
|
|
SELECT pg_catalog.set_config('search_path', '', false);
|
|
SET check_function_bodies = false;
|
|
SET client_min_messages = warning;
|
|
SET row_security = off;
|
|
SET default_tablespace = '';
|
|
SET default_with_oids = false;
|
|
CREATE SCHEMA public;
|
|
EOF
|
|
|
|
while read -r line; do
|
|
sed -i '/^'"$line"'$/d' $filename
|
|
done <<< $lines
|
|
|
|
# delete notify triggers
|
|
|
|
sed -i -E '/^CREATE TRIGGER "?notify_hasura_.+"? AFTER \w+ ON .+ FOR EACH ROW EXECUTE PROCEDURE "?hdb_catalog"?\."?notify_hasura_.+"?\(\);$/d' $filename
|
|
|
|
# delete empty lines
|
|
|
|
sed -i '/^[[:space:]]*$/d' $filename
|
|
|
|
echo "done"
|