From: Tom Lane Date: Sun, 21 May 2006 21:13:50 +0000 (+0000) Subject: Fix missed \' to '' conversion. X-Git-Tag: REL8_0_8~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6450cee473fd82a763e2c3dc56e2dfb0352f20f8;p=thirdparty%2Fpostgresql.git Fix missed \' to '' conversion. --- diff --git a/contrib/earthdistance/earthdistance.sql.in b/contrib/earthdistance/earthdistance.sql.in index b5de7534434..4a08cd93694 100644 --- a/contrib/earthdistance/earthdistance.sql.in +++ b/contrib/earthdistance/earthdistance.sql.in @@ -9,7 +9,7 @@ SET search_path = public; CREATE OR REPLACE FUNCTION earth() RETURNS float8 LANGUAGE 'sql' IMMUTABLE -AS 'SELECT \'6378168\'::float8'; +AS 'SELECT ''6378168''::float8'; -- Astromers may want to change the earth function so that distances will be -- returned in degrees. To do this comment out the above definition and