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:
authordiSabler <dissy@ya.ru>2015-07-15 23:02:10 +0300
committerdiSabler <dissy@ya.ru>2015-07-15 23:02:10 +0300
commit1beebff4ddc5c92ad35771811a728c5625dd5673 (patch)
tree7365cfeda740d79233753fa1cf5f92f869832350
parent07ded60ab0ed2b2f1185dd1670582f26c9e1279d (diff)
parent36a5c97533932d2e35f770bc872b09da9ed1976a (diff)
Merge pull request #2 from up4k/patch-1
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;