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
8f401e80
Commit
8f401e80
authored
Nov 24, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup for pg_statistic commit.
parent
74f418eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
src/backend/utils/cache/syscache.c
src/backend/utils/cache/syscache.c
+3
-2
src/include/catalog/indexing.h
src/include/catalog/indexing.h
+2
-2
No files found.
src/backend/utils/cache/syscache.c
View file @
8f401e80
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.4
3 1999/11/24 16:52:38
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.4
4 1999/11/24 17:09:27
momjian Exp $
*
* NOTES
* These routines allow the parser/planner/executor to perform
...
...
@@ -34,6 +34,7 @@
#include "catalog/pg_proc.h"
#include "catalog/pg_rewrite.h"
#include "catalog/pg_shadow.h"
#include "catalog/pg_statistic.h"
#include "catalog/pg_type.h"
#include "utils/catcache.h"
#include "utils/temprel.h"
...
...
@@ -368,7 +369,7 @@ NULL,NULL
},
offsetof
(
FormData_pg_statistic
,
stacommonval
),
StatisticRelidAttnumOpIndex
,
StatisticRelidAttnumOpIndexScan
},
(
ScanFunc
)
StatisticRelidAttnumOpIndexScan
},
{
TypeRelationName
,
/* TYPENAME */
1
,
{
...
...
src/include/catalog/indexing.h
View file @
8f401e80
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: indexing.h,v 1.3
1 1999/11/24 16:52:4
8 momjian Exp $
* $Id: indexing.h,v 1.3
2 1999/11/24 17:09:2
8 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -202,7 +202,7 @@ DECLARE_UNIQUE_INDEX(pg_rewrite_rulename_index on pg_rewrite using btree(rulenam
xDECLARE_UNIQUE_INDEX(pg_shadow_name_index on pg_shadow using btree(usename name_ops));
xDECLARE_UNIQUE_INDEX(pg_shadow_sysid_index on pg_shadow using btree(usesysid int4_ops));
*/
DECLARE_INDEX
(
pg_statistic_relid_att_op_index
on
pg_s
hadow
using
btree
(
starelid
oid_ops
,
staattnum
int2_ops
,
staop
oid_ops
));
DECLARE_INDEX
(
pg_statistic_relid_att_op_index
on
pg_s
tatistic
using
btree
(
starelid
oid_ops
,
staattnum
int2_ops
,
staop
oid_ops
));
DECLARE_INDEX
(
pg_trigger_tgconstrname_index
on
pg_trigger
using
btree
(
tgconstrname
name_ops
));
DECLARE_INDEX
(
pg_trigger_tgconstrrelid_index
on
pg_trigger
using
btree
(
tgconstrrelid
oid_ops
));
DECLARE_INDEX
(
pg_trigger_tgrelid_index
on
pg_trigger
using
btree
(
tgrelid
oid_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