aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-16 05:39:04 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-16 05:39:04 +0000
commitdf6ca83a5b59c3825d04089c16ef376c2bac3039 (patch)
treef31162aacc001319238fbe16d449f0ebd0e3e936 /src
parent906651f663669036a0a9680ff4105c5828c9190c (diff)
downloadpostgresql-df6ca83a5b59c3825d04089c16ef376c2bac3039.tar.gz
postgresql-df6ca83a5b59c3825d04089c16ef376c2bac3039.zip
Enable FUNC_UTIL_PATCH by default
Diffstat (limited to 'src')
-rw-r--r--src/include/config.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/config.h b/src/include/config.h
index e8a5e25a39d..d75c21961ee 100644
--- a/src/include/config.h
+++ b/src/include/config.h
@@ -65,5 +65,17 @@
/*------------------------------------------------------*/
/* #define UNSAFE_FLOATS */
+/*
+
+There is a bug in the function executor. The backend crashes while trying to
+execute an sql function containing an utility command (create, notify, ...).
+The bug is part in the planner, which returns a number of plans different
+than the number of commands if there are utility commands in the query, and
+in part in the function executor which assumes that all commands are normal
+query commands and causes a SIGSEGV trying to execute commands without plan.
+
+*/
+#define FUNC_UTIL_PATCH
+
#endif /* CONFIG_H */