diff options
author | Tom Lane | 2006-05-21 21:13:50 +0000 |
---|---|---|
committer | Tom Lane | 2006-05-21 21:13:50 +0000 |
commit | 6450cee473fd82a763e2c3dc56e2dfb0352f20f8 (patch) | |
tree | 394210e29eb998c5e12839b94655149d6208861c | |
parent | 29dd673a94fde5709b7621ce2d812c4037a57bdd (diff) |
Fix missed \' to '' conversion.
-rw-r--r-- | contrib/earthdistance/earthdistance.sql.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |