projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ca6765
)
Fix unusual include style
author
Peter Eisentraut
Thu, 17 Oct 2024 06:14:45 +0000
(08:14 +0200)
committer
Peter Eisentraut
Thu, 17 Oct 2024 06:14:45 +0000
(08:14 +0200)
Project-internal header files should be included using " ", not < >.
src/test/modules/test_rls_hooks/test_rls_hooks.h
patch
|
blob
|
blame
|
history
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 306a0adeba3425689fd8a2b6011bbbceb04dcb33..ca52b89eb45857a99f6efa601e56aecf09c13959 100644
(file)
--- 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);