summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund2015-10-03 19:31:51 +0000
committerAndres Freund2015-10-03 19:31:51 +0000
commit23fc0b485d6dfa49ff20fff6c5661be4b12a5bff (patch)
tree7f68d4691025c289c20fd133227eed476cb89f2e
parentb67aaf21e8ef8273d5179a8832a109153d7adfe1 (diff)
Add missed CREATE EXTENSION ... CASCADE regression test adjustment.
-rw-r--r--contrib/earthdistance/expected/earthdistance.out1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/earthdistance/expected/earthdistance.out b/contrib/earthdistance/expected/earthdistance.out
index 9bd556fc22..6a58924734 100644
--- a/contrib/earthdistance/expected/earthdistance.out
+++ b/contrib/earthdistance/expected/earthdistance.out
@@ -9,6 +9,7 @@
--
CREATE EXTENSION earthdistance; -- fail, must install cube first
ERROR: required extension "cube" is not installed
+HINT: Use CREATE EXTENSION CASCADE to install required extensions too.
CREATE EXTENSION cube;
CREATE EXTENSION earthdistance;
--