diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-10-17 08:14:45 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-10-17 08:14:45 +0200 |
commit | 342fb8a332007fb64fb1450e28194c36e9da3d6b (patch) | |
tree | e34bb43601110e14af6e31a6f7ffec2a8eb5118c | |
parent | 9ca67658d19e6c258eb4021a326ed7d38b3ab75f (diff) | |
download | postgresql-342fb8a332007fb64fb1450e28194c36e9da3d6b.tar.gz postgresql-342fb8a332007fb64fb1450e28194c36e9da3d6b.zip |
Fix unusual include style
Project-internal header files should be included using " ", not < >.
-rw-r--r-- | src/test/modules/test_rls_hooks/test_rls_hooks.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <rewrite/rowsecurity.h> +#include "rewrite/rowsecurity.h" /* Return set of permissive hooks based on CmdType and Relation */ extern List *test_rls_hooks_permissive(CmdType cmdtype, Relation relation); |