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
4bd50068
Commit
4bd50068
authored
Jun 07, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add index on pg_index.indrelid for Tom Lane.
parent
5b9d0d9a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
src/backend/catalog/indexing.c
src/backend/catalog/indexing.c
+2
-2
src/backend/utils/cache/syscache.c
src/backend/utils/cache/syscache.c
+2
-2
src/include/catalog/indexing.h
src/include/catalog/indexing.h
+5
-2
No files found.
src/backend/catalog/indexing.c
View file @
4bd50068
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.6
2 2000/05/30 00:49:42
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.6
3 2000/06/07 02:44:35
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -45,7 +45,7 @@ char *Name_pg_class_indices[Num_pg_class_indices] =
char
*
Name_pg_group_indices
[
Num_pg_group_indices
]
=
{
GroupNameIndex
,
GroupSysidIndex
};
char
*
Name_pg_index_indices
[
Num_pg_index_indices
]
=
{
IndexRelidIndex
};
{
IndexRelidIndex
,
IndexIndrelidIndex
};
char
*
Name_pg_inherits_indices
[
Num_pg_inherits_indices
]
=
{
InheritsRelidSeqnoIndex
};
char
*
Name_pg_language_indices
[
Num_pg_language_indices
]
=
...
...
src/backend/utils/cache/syscache.c
View file @
4bd50068
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.5
1 2000/06/06 17:02:38 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.5
2 2000/06/07 02:44:37 momjian
Exp $
*
* NOTES
* These routines allow the parser/planner/executor to perform
...
...
@@ -71,7 +71,7 @@ typedef HeapTuple (*ScanFunc) ();
In backend/catalog/indexing.c, initialize the relation array with
the index names for the relation, fixed size of relation (or marking
first non-fixed length field), and create the index lookup function.
Pick one that
take
s similar arguments and use that one, but keep the
Pick one that
ha
s similar arguments and use that one, but keep the
function names in the same order as the cache list for clarity.
Finally, any place your relation gets heap_insert() or
...
...
src/include/catalog/indexing.h
View file @
4bd50068
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: indexing.h,v 1.3
7 2000/04/12 17:16:27
momjian Exp $
* $Id: indexing.h,v 1.3
8 2000/06/07 02:44:40
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -28,7 +28,7 @@
#define Num_pg_class_indices 2
#define Num_pg_description_indices 1
#define Num_pg_group_indices 2
#define Num_pg_index_indices
1
#define Num_pg_index_indices
2
#define Num_pg_inherits_indices 1
#define Num_pg_language_indices 2
#define Num_pg_listener_indices 1
...
...
@@ -58,6 +58,7 @@
#define DescriptionObjIndex "pg_description_objoid_index"
#define GroupNameIndex "pg_group_name_index"
#define GroupSysidIndex "pg_group_sysid_index"
#define IndexIndrelidIndex "pg_index_indrelid_index"
#define IndexRelidIndex "pg_index_indexrelid_index"
#define InheritsRelidSeqnoIndex "pg_inherits_relid_seqno_index"
#define LanguageNameIndex "pg_language_name_index"
...
...
@@ -183,6 +184,8 @@ DECLARE_UNIQUE_INDEX(pg_class_relname_index on pg_class using btree(relname name
DECLARE_UNIQUE_INDEX
(
pg_description_objoid_index
on
pg_description
using
btree
(
objoid
oid_ops
));
DECLARE_UNIQUE_INDEX
(
pg_group_name_index
on
pg_group
using
btree
(
groname
name_ops
));
DECLARE_UNIQUE_INDEX
(
pg_group_sysid_index
on
pg_group
using
btree
(
grosysid
int4_ops
));
/* This following index is not used for a cache and is not unique */
DECLARE_INDEX
(
pg_index_indrelid_index
on
pg_index
using
btree
(
indrelid
oid_ops
));
DECLARE_UNIQUE_INDEX
(
pg_index_indexrelid_index
on
pg_index
using
btree
(
indexrelid
oid_ops
));
DECLARE_UNIQUE_INDEX
(
pg_inherits_relid_seqno_index
on
pg_inherits
using
btree
(
inhrelid
oid_ops
,
inhseqno
int4_ops
));
DECLARE_UNIQUE_INDEX
(
pg_language_name_index
on
pg_language
using
btree
(
lanname
name_ops
));
...
...
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