Merge pull request #129 from CartoDB/120-fix-extension-upgrade
Do not remove old function #120
This commit is contained in:
commit
4fe85a6a76
4
NEWS.md
4
NEWS.md
@ -1,3 +1,7 @@
|
|||||||
|
next (2015-??-??)
|
||||||
|
-----------------
|
||||||
|
* Removed `DROP FUNCTION IF EXISTS cdb_usertables(text);` [#129](https://github.com/CartoDB/cartodb-postgresql/pull/129). This was needed for upgrading between 0.7.4 to 0.8.0 but is no longer needed.
|
||||||
|
|
||||||
0.9.4 (2015-08-28)
|
0.9.4 (2015-08-28)
|
||||||
------------------
|
------------------
|
||||||
* Fixed issue with indices when renaming tables [#123](https://github.com/CartoDB/cartodb-postgresql/issues/123)
|
* Fixed issue with indices when renaming tables [#123](https://github.com/CartoDB/cartodb-postgresql/issues/123)
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
--
|
--
|
||||||
-- Currently accepted permissions are: 'public', 'private' or 'all'
|
-- Currently accepted permissions are: 'public', 'private' or 'all'
|
||||||
--
|
--
|
||||||
DROP FUNCTION IF EXISTS cdb_usertables(text);
|
|
||||||
CREATE OR REPLACE FUNCTION CDB_UserTables(perm text DEFAULT 'all')
|
CREATE OR REPLACE FUNCTION CDB_UserTables(perm text DEFAULT 'all')
|
||||||
RETURNS SETOF name
|
RETURNS SETOF name
|
||||||
AS $$
|
AS $$
|
||||||
|
Loading…
Reference in New Issue
Block a user