diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-09-05 12:05:32 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-09-05 12:05:32 +0200 |
commit | aa3655d35e2cf5db85ee76d642eeba23481a0517 (patch) | |
tree | 74f82213e202551de9159cf8040999943cd06b44 | |
parent | 1576a1d048d42f7d74b5eef428ba4816266ae615 (diff) | |
download | exchange-aa3655d35e2cf5db85ee76d642eeba23481a0517.tar.gz exchange-aa3655d35e2cf5db85ee76d642eeba23481a0517.zip |
remove AS integer for Postgres backwards-commpatibility of the dump
-rwxr-xr-x | src/benchmark/generate-auditor-basedb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmark/generate-auditor-basedb.sh b/src/benchmark/generate-auditor-basedb.sh index 4f4d76622..fafb6f03a 100755 --- a/src/benchmark/generate-auditor-basedb.sh +++ b/src/benchmark/generate-auditor-basedb.sh | |||
@@ -80,7 +80,7 @@ kill `jobs -p` | |||
80 | 80 | ||
81 | # Dump database | 81 | # Dump database |
82 | echo "Dumping database" | 82 | echo "Dumping database" |
83 | pg_dump -O $TARGET_DB > auditor-basedb.sql | 83 | pg_dump -O $TARGET_DB | sed -e '/AS integer/d' > auditor-basedb.sql |
84 | 84 | ||
85 | echo $MASTER_PUB > auditor-basedb.mpub | 85 | echo $MASTER_PUB > auditor-basedb.mpub |
86 | 86 | ||