Skip to content

Commit

Permalink
Merge pull request #331 from CartoDB/fix_0_22_1_hyphens
Browse files Browse the repository at this point in the history
Fix 0 22 1 hyphens
  • Loading branch information
Javier Torres authored May 31, 2018
2 parents 0da36ea + 06b7eb8 commit 2e68626
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# cartodb/Makefile

EXTENSION = cartodb
EXTVERSION = 0.22.1
EXTVERSION = 0.22.2

SED = sed
AWK = awk
Expand Down Expand Up @@ -87,6 +87,7 @@ UPGRADABLE = \
0.21.0 \
0.22.0 \
0.22.1 \
0.22.2 \
$(EXTVERSION)dev \
$(EXTVERSION)next \
$(END)
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion scripts-available/CDB_Organizations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2e68626

Please sign in to comment.