8000 Indexing of pg_trigger · postgrespro/postgres_cluster@f2cc46d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f2cc46d

Browse files
committed
Indexing of pg_trigger
1 parent 2d7b93c commit f2cc46d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/backend/catalog/indexing.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.10 1997/08/21 01:32:06 vadim Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.11 1997/08/31 09:56:18 vadim Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -41,6 +41,7 @@
4141
* pg_class
4242
* pg_attrdef
4343
* pg_relcheck
44+
* pg_trigger
4445
*/
4546

4647
char *Name_pg_attr_indices[Num_pg_attr_indices] = {AttributeNameIndex,
@@ -57,6 +58,8 @@ char *Name_pg_attrdef_indices[Num_pg_attrdef_indices]= { AttrDefaultIndex };
5758

5859
char *Name_pg_relcheck_indices[Num_pg_relcheck_indices]= { RelCheckIndex };
5960

61+
char *Name_pg_trigger_indices[Num_pg_trigger_indices]= { TriggerRelidIndex };
62+
6063

6164
static HeapTuple CatalogIndexFetchTuple(Relation heapRelation,
6265
Relation idesc,

0 commit comments

Comments
 (0)
0