Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
eacb22ec
Commit
eacb22ec
authored
Sep 28, 2010
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix duplicate OIDs introduced by SECURITY LABEL patch.
Report by Shigeru Hanada.
parent
62b6aaa4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+1
-1
src/include/catalog/indexing.h
src/include/catalog/indexing.h
+2
-2
src/include/catalog/pg_seclabel.h
src/include/catalog/pg_seclabel.h
+2
-2
src/include/catalog/toasting.h
src/include/catalog/toasting.h
+1
-1
No files found.
src/include/catalog/catversion.h
View file @
eacb22ec
...
...
@@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 2010092
7
1
#define CATALOG_VERSION_NO 2010092
8
1
#endif
src/include/catalog/indexing.h
View file @
eacb22ec
...
...
@@ -281,8 +281,8 @@ DECLARE_UNIQUE_INDEX(pg_default_acl_oid_index, 828, on pg_default_acl using btre
DECLARE_UNIQUE_INDEX
(
pg_db_role_setting_databaseid_rol_index
,
2965
,
on
pg_db_role_setting
using
btree
(
setdatabase
oid_ops
,
setrole
oid_ops
));
#define DbRoleSettingDatidRolidIndexId 2965
DECLARE_UNIQUE_INDEX
(
pg_seclabel_object_index
,
3
038
,
on
pg_seclabel
using
btree
(
objoid
oid_ops
,
classoid
oid_ops
,
objsubid
int4_ops
,
provider
text_ops
));
#define SecLabelObjectIndexId 3
038
DECLARE_UNIQUE_INDEX
(
pg_seclabel_object_index
,
3
597
,
on
pg_seclabel
using
btree
(
objoid
oid_ops
,
classoid
oid_ops
,
objsubid
int4_ops
,
provider
text_ops
));
#define SecLabelObjectIndexId 3
597
/* last step of initialization script: build the indexes declared above */
BUILD_INDICES
...
...
src/include/catalog/pg_seclabel.h
View file @
eacb22ec
...
...
@@ -18,9 +18,9 @@
* typedef struct FormData_pg_seclabel
* ----------------
*/
#define SecLabelRelationId 3
037
#define SecLabelRelationId 3
596
CATALOG
(
pg_seclabel
,
3
037
)
BKI_WITHOUT_OIDS
CATALOG
(
pg_seclabel
,
3
596
)
BKI_WITHOUT_OIDS
{
Oid
objoid
;
/* OID of the object itself */
Oid
classoid
;
/* OID of table containing the object */
...
...
src/include/catalog/toasting.h
View file @
eacb22ec
...
...
@@ -45,7 +45,7 @@ DECLARE_TOAST(pg_constraint, 2832, 2833);
DECLARE_TOAST
(
pg_description
,
2834
,
2835
);
DECLARE_TOAST
(
pg_proc
,
2836
,
2837
);
DECLARE_TOAST
(
pg_rewrite
,
2838
,
2839
);
DECLARE_TOAST
(
pg_seclabel
,
3
039
,
3040
);
DECLARE_TOAST
(
pg_seclabel
,
3
598
,
3599
);
DECLARE_TOAST
(
pg_statistic
,
2840
,
2841
);
DECLARE_TOAST
(
pg_trigger
,
2336
,
2337
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment