/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/modules/test_rls_hooks/test_rls_hooks.h
25 строк
738 B
Bruce Momjian
Update copyright for 2026
01 янв 2026, 21:24
01 янв 2026, 21:24
451c439
Код
Авторство
О чём код?
/*-------------------------------------------------------------------------- * * test_rls_hooks.h * Definitions for RLS hooks * * Copyright (c) 2015-2026, PostgreSQL Global Development Group * * IDENTIFICATION * src/test/modules/test_rls_hooks/test_rls_hooks.h * * ------------------------------------------------------------------------- */ #ifndef TEST_RLS_HOOKS_H #define TEST_RLS_HOOKS_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); /* Return set of restrictive hooks based on CmdType and Relation */ extern List *test_rls_hooks_restrictive(CmdType cmdtype, Relation relation); #endif