Project

General

Profile

1
#!/bin/bash
2
# Runs script on vegbien db
3
# Usage: env [no_search_path=1] [no_query_results=1] self [psql_opts...]
4

    
5
selfDir="$(dirname -- "$0")"
6

    
7
. "$selfDir/vegbien_dest"
8

    
9
searchPath="\"${schemas//,/\",\"}\""
10

    
11
(
12
    test -z "$no_search_path" && echo "SET search_path TO $searchPath;"
13
    test -n "$no_query_results" && echo '\o /dev/null'
14
    cat
15
)|nice -n +5 "$selfDir/psql_vegbien" --set ON_ERROR_STOP=1 --quiet "$@"
(53-53/79)