From 791b86cbf61a189b398e4adccf30db2d44e8b4d3 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Tue, 20 Feb 2024 20:52:30 +0100 Subject: [PATCH] docs: Add note about not support Stored Procedures Resolves https://github.com/PostgREST/postgrest-docs/issues/147 --- docs/references/api/functions.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/references/api/functions.rst b/docs/references/api/functions.rst index cb7bb4cc3..28db5e653 100644 --- a/docs/references/api/functions.rst +++ b/docs/references/api/functions.rst @@ -16,6 +16,10 @@ If they return table types, functions can: Why the ``/rpc`` prefix? PostgreSQL allows a table or view to have the same name as a function. The prefix allows us to avoid routes collisions. +.. warning:: + + `Stored Procedures `_ are not supported. + Calling with POST -----------------