Skip to content

Commit a71febe

Browse files
[#28902] YSQL: Increment YB_LAST_USED_OID (previously missed)
Summary: Revision: D45540 commit: a0ce1e8 added a new view, yb_tablet_metadata. That revision did not increment YB_LAST_USED_OID macro in catalog.h. This revision fixes that. Jira: DB-18625 Test Plan: jenkins Reviewers: aagrawal Reviewed By: aagrawal Subscribers: yql Differential Revision: https://phorge.dev.yugabyte.com/D47376
1 parent d9123c5 commit a71febe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/postgres/src/include/catalog/catalog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* If you increment it, make sure you didn't forget to add a new SQL migration
3030
* (see pg_yb_migration.dat and src/yb/yql/pgwrapper/ysql_migrations/README.md)
3131
*/
32-
#define YB_LAST_USED_OID 8098
32+
#define YB_LAST_USED_OID 8099
3333

3434
extern bool IsSystemRelation(Relation relation);
3535
extern bool IsToastRelation(Relation relation);

0 commit comments

Comments
 (0)