Fix upgrade of CDB_StringToDate function #73

This commit is contained in:
Rafa de la Torre 2015-03-03 16:09:57 +00:00
parent 38d32371c8
commit 1c9e5f241f
3 changed files with 8 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# cartodb/Makefile
EXTENSION = cartodb
EXTVERSION = 0.7.2
EXTVERSION = 0.7.3
SED = sed
@ -36,6 +36,7 @@ UPGRADABLE = \
0.6.0 \
0.7.0 \
0.7.1 \
0.7.2 \
$(EXTVERSION)dev \
$(EXTVERSION)next \
$(END)

View File

@ -1,3 +1,8 @@
0.7.3 (2015-03-03)
------------------
* Fix upgrade of CDB_StringToDate function
* Add a test for to validate CDB_TableMetadataTouch usage with OID
0.7.2 (2015-03-03)
------------------
* Fix conversion of strings to datetime

View File

@ -1,5 +1,6 @@
-- Convert string to date
--
DROP FUNCTION IF EXISTS CDB_StringToDate(character varying);
CREATE OR REPLACE FUNCTION CDB_StringToDate(input character varying)
RETURNS TIMESTAMP AS $$
DECLARE output TIMESTAMP;