From ccbabaa3b46cea2a86f7a6828d7276c817a225c5 Mon Sep 17 00:00:00 2001 From: Javier Torres Date: Thu, 31 May 2018 17:06:39 +0200 Subject: [PATCH 1/2] Missing quote idents --- scripts-available/CDB_Organizations.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts-available/CDB_Organizations.sql b/scripts-available/CDB_Organizations.sql index 35f838a..8c2e47b 100644 --- a/scripts-available/CDB_Organizations.sql +++ b/scripts-available/CDB_Organizations.sql @@ -110,7 +110,7 @@ FUNCTION cartodb._CDB_Organization_Get_Table_Sequences(from_schema text, table_n AS $$ BEGIN RETURN QUERY EXECUTE 'SELECT - n.nspname || ''.'' || c.relname + quote_ident(n.nspname) || ''.'' || quote_ident(c.relname) FROM pg_depend d JOIN pg_class c ON d.objid = c.oid From 06b7eb8504955f68f43e8f9d35048c069feb3aba Mon Sep 17 00:00:00 2001 From: Javier Torres Date: Thu, 31 May 2018 17:06:47 +0200 Subject: [PATCH 2/2] Bump to 0.22.2 --- Makefile | 3 ++- NEWS.md | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 92b9791..d72f7cc 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # cartodb/Makefile EXTENSION = cartodb -EXTVERSION = 0.22.1 +EXTVERSION = 0.22.2 SED = sed AWK = awk @@ -87,6 +87,7 @@ UPGRADABLE = \ 0.21.0 \ 0.22.0 \ 0.22.1 \ + 0.22.2 \ $(EXTVERSION)dev \ $(EXTVERSION)next \ $(END) diff --git a/NEWS.md b/NEWS.md index db07eb5..989ee51 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,6 @@ +0.22.2 (2018-05-29) +* Fix: Fix hyphenates usernames in 0.22.1 fix (#331) + 0.22.1 (2018-05-29) * Fix: Correctly grant permission to all sequences related with table (#330)