summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartinko2014-10-03 12:25:25 +0000
committermartinko2014-10-03 12:25:25 +0000
commit224784fa0f6851176e28cdf5333120c35e3f1665 (patch)
tree6a3d03539c411fd4d98651ba4a89f290b5c3b488
parent7e8e6fda7af53fa797fff5d02f5174312686cf2a (diff)
londiste.list_obsolete_partitions: removed lower-casing of parent table name
-rw-r--r--sql/londiste/functions/londiste.list_obsolete_partitions.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/londiste/functions/londiste.list_obsolete_partitions.sql b/sql/londiste/functions/londiste.list_obsolete_partitions.sql
index 517f6bcd..76af1cba 100644
--- a/sql/londiste/functions/londiste.list_obsolete_partitions.sql
+++ b/sql/londiste/functions/londiste.list_obsolete_partitions.sql
@@ -21,8 +21,8 @@ as $$
-- Names of partitions to be dropped
-------------------------------------------------------------------------------
declare
- _schema text not null := lower (split_part (i_parent_table, '.', 1));
- _table text not null := lower (split_part (i_parent_table, '.', 2));
+ _schema text not null := split_part (i_parent_table, '.', 1);
+ _table text not null := split_part (i_parent_table, '.', 2);
_part text;
_expr text;
_dfmt text;