Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/isida/4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorup4k <helladmin03@gmail.com>2015-07-13 21:26:42 +0300
committerup4k <helladmin03@gmail.com>2015-07-13 21:26:42 +0300
commit36a5c97533932d2e35f770bc872b09da9ed1976a (patch)
tree7365cfeda740d79233753fa1cf5f92f869832350
parent07ded60ab0ed2b2f1185dd1670582f26c9e1279d (diff)
fixed typo in remove_duplicates script
-rw-r--r--scripts/pgsql_remove_duplicates.schema3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/pgsql_remove_duplicates.schema b/scripts/pgsql_remove_duplicates.schema
index 8c5ff97..8701ec8 100644
--- a/scripts/pgsql_remove_duplicates.schema
+++ b/scripts/pgsql_remove_duplicates.schema
@@ -421,7 +421,8 @@ CREATE TABLE tmp (
type text,
time integer,
room text,
- hash text array[10]
+ hash text array[10],
+ changed text
);
INSERT INTO tmp SELECT DISTINCT * FROM feed;