summaryrefslogtreecommitdiff
path: root/python/londiste/setup.py
diff options
context:
space:
mode:
authorAsko Tiidumaa2010-11-26 12:33:33 +0000
committerMarko Kreen2010-11-29 12:56:19 +0000
commit89aea74e57a42f33bb345e327bdffdad52dea4d2 (patch)
treed3a0d40f1e27480953be57594dc72bdc505aca36 /python/londiste/setup.py
parentd5e9c441c7a31b10c703aac3013eaf0764fbd1c7 (diff)
sql/*: Simplify queries to be able to run greenplum as leaf
execute: Move session_replication_role setting out of db functions.
Diffstat (limited to 'python/londiste/setup.py')
-rw-r--r--python/londiste/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/londiste/setup.py b/python/londiste/setup.py
index 9ea44bbb..e8b20310 100644
--- a/python/londiste/setup.py
+++ b/python/londiste/setup.py
@@ -353,7 +353,7 @@ class LondisteSetup(CascadeAdmin):
# set replica role for EXECUTE transaction
if db.server_version >= 80300:
- curs.execute("set local session_replication_role = 'replica'")
+ curs.execute("set local session_replication_role = 'local'")
for fn in files:
fname = os.path.basename(fn)