You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
In commit7b4bfc8 the DATA and DESCR entries for the newrow_security_active() function were inadvertantly put afterthe PROVOLATILE defines, rather than before as they shouldhave been placed. Move them up where they belong.Backpatch to 9.5 where the new entries were introduced.
DATA(insert OID = 6014 ( pg_show_replication_origin_status PGNSP PGUID 12 1 100 0 0 f f f f f t v r 0 0 2249 "" "{26,25,3220,3220}" "{o,o,o,o}" "{local_id, external_id, remote_lsn, local_lsn}" _null_ _null_ pg_show_replication_origin_status _null_ _null_ _null_ ));
5203
5203
DESCR("get progress for all replication origins");
5204
5204
5205
+
/* rls */
5206
+
DATA(insert OID = 3298 ( row_security_active PGNSP PGUID 12 1 0 0 0 f f f f t f s s 1 0 16 "26" _null_ _null_ _null_ _null_ _null_row_security_active _null_ _null_ _null_ ));
5207
+
DESCR("row security for current context active on table by table oid");
5208
+
DATA(insert OID = 3299 ( row_security_active PGNSP PGUID 12 1 0 0 0 f f f f t f s s 1 0 16 "25" _null_ _null_ _null_ _null_ _null_row_security_active_name _null_ _null_ _null_ ));
5209
+
DESCR("row security for current context active on table by table name");
5205
5210
5206
5211
/*
5207
5212
* Symbolic values for provolatile column: these indicate whether the result
@@ -5215,12 +5220,6 @@ DESCR("get progress for all replication origins");
5215
5220
#define PROVOLATILE_STABLE's'/* does not change within a scan */
5216
5221
#define PROVOLATILE_VOLATILE'v'/* can change even within a scan */
5217
5222
5218
-
/* rls */
5219
-
DATA(insert OID = 3298 ( row_security_active PGNSP PGUID 12 1 0 0 0 f f f f t f s s 1 0 16 "26" _null_ _null_ _null_ _null_ _null_row_security_active _null_ _null_ _null_ ));
5220
-
DESCR("row security for current context active on table by table oid");
5221
-
DATA(insert OID = 3299 ( row_security_active PGNSP PGUID 12 1 0 0 0 f f f f t f s s 1 0 16 "25" _null_ _null_ _null_ _null_ _null_row_security_active_name _null_ _null_ _null_ ));
5222
-
DESCR("row security for current context active on table by table name");
5223
-
5224
5223
/*
5225
5224
* Symbolic values for proparallel column: these indicate whether a function
5226
5225
* can be safely be run in a parallel backend, during parallelism but