diff options
author | martinko | 2014-10-03 12:25:25 +0000 |
---|---|---|
committer | martinko | 2014-10-03 12:25:25 +0000 |
commit | 224784fa0f6851176e28cdf5333120c35e3f1665 (patch) | |
tree | 6a3d03539c411fd4d98651ba4a89f290b5c3b488 | |
parent | 7e8e6fda7af53fa797fff5d02f5174312686cf2a (diff) |
londiste.list_obsolete_partitions: removed lower-casing of parent table name
-rw-r--r-- | sql/londiste/functions/londiste.list_obsolete_partitions.sql | 4 |
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; |