diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/miscadmin.h | 2 | ||||
-rw-r--r-- | src/include/utils/plancache.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index e0cc69f27ef..80ac7329dce 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -286,7 +286,6 @@ extern int trace_recovery(int trace_level); /* flags to be OR'd to form sec_context */ #define SECURITY_LOCAL_USERID_CHANGE 0x0001 #define SECURITY_RESTRICTED_OPERATION 0x0002 -#define SECURITY_ROW_LEVEL_DISABLED 0x0004 extern char *DatabasePath; @@ -305,7 +304,6 @@ extern void GetUserIdAndSecContext(Oid *userid, int *sec_context); extern void SetUserIdAndSecContext(Oid userid, int sec_context); extern bool InLocalUserIdChange(void); extern bool InSecurityRestrictedOperation(void); -extern bool InRowLevelSecurityDisabled(void); extern void GetUserIdAndContext(Oid *userid, bool *sec_def_context); extern void SetUserIdAndContext(Oid userid, bool sec_def_context); extern void InitializeSessionUserId(const char *rolename, Oid useroid); diff --git a/src/include/utils/plancache.h b/src/include/utils/plancache.h index b683b070e35..4b9a0c68cee 100644 --- a/src/include/utils/plancache.h +++ b/src/include/utils/plancache.h @@ -111,7 +111,6 @@ typedef struct CachedPlanSource int num_custom_plans; /* number of plans included in total */ bool hasRowSecurity; /* planned with row security? */ bool row_security_env; /* row security setting when planned */ - bool rowSecurityDisabled; /* is row security disabled? */ } CachedPlanSource; /* |