diff options
author | Marko Kreen | 2011-10-26 13:48:02 +0000 |
---|---|---|
committer | Marko Kreen | 2011-10-26 13:48:02 +0000 |
commit | 3b6dda1bb10478e52ae4686dfd29edc6b66e6d93 (patch) | |
tree | d5e51779d09ba677f5130d34ffc153f8d9826719 | |
parent | 43163bb45a21836d63fccc2e58c213e3f8867b48 (diff) |
londiste.handlers: turn off REAL_TABLE by default
does not work on merged tables.
-rw-r--r-- | python/londiste/handlers/bulk.py | 2 | ||||
-rw-r--r-- | python/londiste/handlers/dispatch.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/londiste/handlers/bulk.py b/python/londiste/handlers/bulk.py index d22f6ab8..5b5dcc01 100644 --- a/python/londiste/handlers/bulk.py +++ b/python/londiste/handlers/bulk.py @@ -41,7 +41,7 @@ DEFAULT_METHOD = METH_CORRECT AVOID_BIZGRES_BUG = 0 USE_LONGLIVED_TEMP_TABLES = True -USE_REAL_TABLE = True +USE_REAL_TABLE = False class BulkEvent(object): """Helper class for BulkLoader to store relevant data.""" diff --git a/python/londiste/handlers/dispatch.py b/python/londiste/handlers/dispatch.py index e84b089a..0c67061c 100644 --- a/python/londiste/handlers/dispatch.py +++ b/python/londiste/handlers/dispatch.py @@ -168,7 +168,7 @@ METH_INSERT = 3 # BulkLoader hacks AVOID_BIZGRES_BUG = 0 USE_LONGLIVED_TEMP_TABLES = True -USE_REAL_TABLE = True +USE_REAL_TABLE = False # mode variables (first in list is default value) TABLE_MODES = ['part', 'direct', 'ignore'] |