Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
2aa080fc
Commit
2aa080fc
authored
26 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
indexing.c cleanups.
parent
24a05f5b
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/backend/catalog/index.c
+2
-3
2 additions, 3 deletions
src/backend/catalog/index.c
src/backend/catalog/indexing.c
+3
-4
3 additions, 4 deletions
src/backend/catalog/indexing.c
src/backend/catalog/pg_proc.c
+3
-4
3 additions, 4 deletions
src/backend/catalog/pg_proc.c
with
8 additions
and
11 deletions
src/backend/catalog/index.c
+
2
−
3
View file @
2aa080fc
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.5
7
1998/08/
28 04:57:19
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.5
8
1998/08/
31 17:49:16
momjian Exp $
*
*
*
*
* INTERFACE ROUTINES
* INTERFACE ROUTINES
...
@@ -1281,8 +1281,7 @@ FormIndexDatum(int numberOfAttributes,
...
@@ -1281,8 +1281,7 @@ FormIndexDatum(int numberOfAttributes,
{
{
offset
=
AttrNumberGetAttrOffset
(
i
);
offset
=
AttrNumberGetAttrOffset
(
i
);
datum
[
offset
]
=
datum
[
offset
]
=
PointerGetDatum
(
GetIndexValue
(
heapTuple
,
PointerGetDatum
(
GetIndexValue
(
heapTuple
,
heapDescriptor
,
heapDescriptor
,
offset
,
offset
,
attributeNumber
,
attributeNumber
,
...
...
This diff is collapsed.
Click to expand it.
src/backend/catalog/indexing.c
+
3
−
4
View file @
2aa080fc
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.2
3
1998/08/3
0 23:25:55
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.2
4
1998/08/3
1 17:49:17
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -132,8 +132,7 @@ CatalogIndexInsert(Relation *idescs,
...
@@ -132,8 +132,7 @@ CatalogIndexInsert(Relation *idescs,
pgIndexP
=
(
IndexTupleForm
)
GETSTRUCT
(
pgIndexTup
);
pgIndexP
=
(
IndexTupleForm
)
GETSTRUCT
(
pgIndexTup
);
/*
/*
* Compute the number of attributes we are indexing upon. very
* Compute the number of attributes we are indexing upon.
* important - can't assume one if this is a functional index.
*/
*/
for
(
attnumP
=
(
&
pgIndexP
->
indkey
[
0
]),
natts
=
0
;
for
(
attnumP
=
(
&
pgIndexP
->
indkey
[
0
]),
natts
=
0
;
*
attnumP
!=
InvalidAttrNumber
;
*
attnumP
!=
InvalidAttrNumber
;
...
@@ -301,7 +300,7 @@ AttributeNumIndexScan(Relation heapRelation,
...
@@ -301,7 +300,7 @@ AttributeNumIndexScan(Relation heapRelation,
(
bits16
)
0x0
,
(
bits16
)
0x0
,
(
AttrNumber
)
1
,
(
AttrNumber
)
1
,
(
RegProcedure
)
F_OIDEQ
,
(
RegProcedure
)
F_OIDEQ
,
Int32
GetDatum
(
relid
));
ObjectId
GetDatum
(
relid
));
ScanKeyEntryInitialize
(
&
skey
[
1
],
ScanKeyEntryInitialize
(
&
skey
[
1
],
(
bits16
)
0x0
,
(
bits16
)
0x0
,
...
...
This diff is collapsed.
Click to expand it.
src/backend/catalog/pg_proc.c
+
3
−
4
View file @
2aa080fc
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.2
0
1998/08/
24 01:37:47
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.2
1
1998/08/
31 17:49:18
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -129,7 +129,6 @@ ProcedureCreate(char *procedureName,
...
@@ -129,7 +129,6 @@ ProcedureCreate(char *procedureName,
if
(
!
strcmp
(
languageName
,
"sql"
))
if
(
!
strcmp
(
languageName
,
"sql"
))
{
{
/*
/*
* If this call is defining a set, check if the set is already
* If this call is defining a set, check if the set is already
* defined by looking to see whether this call's function text
* defined by looking to see whether this call's function text
...
@@ -142,6 +141,7 @@ ProcedureCreate(char *procedureName,
...
@@ -142,6 +141,7 @@ ProcedureCreate(char *procedureName,
tup
=
SearchSysCacheTuple
(
PROSRC
,
tup
=
SearchSysCacheTuple
(
PROSRC
,
PointerGetDatum
(
prosrctext
),
PointerGetDatum
(
prosrctext
),
0
,
0
,
0
);
0
,
0
,
0
);
pfree
(
prosrctext
);
if
(
HeapTupleIsValid
(
tup
))
if
(
HeapTupleIsValid
(
tup
))
return
tup
->
t_oid
;
return
tup
->
t_oid
;
}
}
...
@@ -152,8 +152,7 @@ ProcedureCreate(char *procedureName,
...
@@ -152,8 +152,7 @@ ProcedureCreate(char *procedureName,
0
,
0
,
0
);
0
,
0
,
0
);
if
(
!
HeapTupleIsValid
(
tup
))
if
(
!
HeapTupleIsValid
(
tup
))
elog
(
ERROR
,
"ProcedureCreate: no such language %s"
,
elog
(
ERROR
,
"ProcedureCreate: no such language %s"
,
languageName
);
languageName
);
languageObjectId
=
tup
->
t_oid
;
languageObjectId
=
tup
->
t_oid
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment