From: Peter Eisentraut Date: Thu, 17 Oct 2024 06:14:45 +0000 (+0200) Subject: Fix unusual include style X-Git-Tag: REL_18_BETA1~1691 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=342fb8a332007fb64fb1450e28194c36e9da3d6b;p=postgresql.git Fix unusual include style Project-internal header files should be included using " ", not < >. --- diff --git a/src/test/modules/test_rls_hooks/test_rls_hooks.h b/src/test/modules/test_rls_hooks/test_rls_hooks.h index 306a0adeba3..ca52b89eb45 100644 --- a/src/test/modules/test_rls_hooks/test_rls_hooks.h +++ b/src/test/modules/test_rls_hooks/test_rls_hooks.h @@ -14,7 +14,7 @@ #ifndef TEST_RLS_HOOKS_H #define TEST_RLS_HOOKS_H -#include +#include "rewrite/rowsecurity.h" /* Return set of permissive hooks based on CmdType and Relation */ extern List *test_rls_hooks_permissive(CmdType cmdtype, Relation relation);