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
58fdae0d
Commit
58fdae0d
authored
Sep 02, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for indexing problems.
parent
557d295b
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
33 deletions
+15
-33
src/backend/access/index/indexam.c
src/backend/access/index/indexam.c
+2
-18
src/backend/catalog/indexing.c
src/backend/catalog/indexing.c
+5
-5
src/backend/commands/vacuum.c
src/backend/commands/vacuum.c
+2
-2
src/backend/parser/parse_target.c
src/backend/parser/parse_target.c
+1
-2
src/backend/storage/ipc/ipc.c
src/backend/storage/ipc/ipc.c
+3
-2
src/backend/tcop/pquery.c
src/backend/tcop/pquery.c
+2
-2
src/backend/utils/misc/trace.c
src/backend/utils/misc/trace.c
+0
-2
No files found.
src/backend/access/index/indexam.c
View file @
58fdae0d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.2
5 1998/09/01 04:26:55
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.2
6 1998/09/02 23:05:21
momjian Exp $
*
* INTERFACE ROUTINES
* index_open - open an index relation by relationId
...
...
@@ -190,23 +190,7 @@ index_insert(Relation relation,
specificResult
=
(
InsertIndexResult
)
fmgr
(
procedure
,
relation
,
datum
,
nulls
,
heap_t_ctid
,
heapRel
,
NULL
);
/* ----------------
* the insert proc is supposed to return a "specific result" and
* this routine has to return a "general result" so after we get
* something back from the insert proc, we allocate a
* "general result" and copy some crap between the two.
*
* As far as I'm concerned all this result shit is needlessly c
* omplicated and should be eliminated. -cim 1/19/91
*
* mao concurs. regardless of how we feel here, however, it is
* important to free memory we don't intend to return to anyone.
* 2/28/91
*
* this "general result" crap is now gone. -ay 3/6/95
* ----------------
*/
/* must be pfree'ed */
return
specificResult
;
}
...
...
src/backend/catalog/indexing.c
View file @
58fdae0d
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.
29 1998/09/01 16:21:47
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.
30 1998/09/02 23:05:23
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -109,12 +109,12 @@ CatalogIndexInsert(Relation *idescs,
HeapTuple
index_tup
;
TupleDesc
heapDescriptor
;
Form_pg_index
index_form
;
Datum
datum
;
Datum
datum
[
INDEX_MAX_KEYS
];
char
nulls
[
INDEX_MAX_KEYS
];
int
natts
;
AttrNumber
*
attnumP
;
FuncIndexInfo
finfo
,
*
finfoP
;
char
nulls
[
INDEX_MAX_KEYS
];
int
i
;
heapDescriptor
=
RelationGetDescr
(
heapRelation
);
...
...
@@ -152,11 +152,11 @@ CatalogIndexInsert(Relation *idescs,
(
AttrNumber
*
)
index_form
->
indkey
,
heapTuple
,
heapDescriptor
,
&
datum
,
datum
,
nulls
,
finfoP
);
indexRes
=
index_insert
(
idescs
[
i
],
&
datum
,
nulls
,
indexRes
=
index_insert
(
idescs
[
i
],
datum
,
nulls
,
&
heapTuple
->
t_ctid
,
heapRelation
);
if
(
indexRes
)
pfree
(
indexRes
);
...
...
src/backend/commands/vacuum.c
View file @
58fdae0d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.8
0 1998/09/01 04:28:0
5 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.8
1 1998/09/02 23:05:2
5 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1156,7 +1156,7 @@ failed to add item with len = %u to page %u (free space %u, nusd %u, noff %u)",
iresult
=
index_insert
(
Irel
[
i
],
idatum
,
inulls
,
&
(
newtup
->
t_ctid
)
,
&
newtup
->
t_ctid
,
onerel
);
if
(
iresult
)
pfree
(
iresult
);
...
...
src/backend/parser/parse_target.c
View file @
58fdae0d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.2
7 1998/09/01 04:30:3
7 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.2
8 1998/09/02 23:05:2
7 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -467,7 +467,6 @@ MakeTargetEntryAttr(ParseState *pstate,
int
resdomno
;
List
*
attrs
=
att
->
attrs
;
TargetEntry
*
tent
;
Oid
relid
;
attrname
=
strVal
(
lfirst
(
att
->
attrs
));
...
...
src/backend/storage/ipc/ipc.c
View file @
58fdae0d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.3
3 1998/09/01 04:31:47
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.3
4 1998/09/02 23:05:30
momjian Exp $
*
* NOTES
*
...
...
@@ -65,7 +65,6 @@ static struct ONEXIT
static
int
on_proc_exit_index
,
on_shmem_exit_index
;
static
void
IpcConfigTip
(
void
);
typedef
struct
_PrivateMemStruct
{
...
...
@@ -739,6 +738,7 @@ LockIsFree(int lockid)
#endif
/* HAS_TEST_AND_SET */
#ifdef NOT_USED
static
void
IpcConfigTip
(
void
)
{
...
...
@@ -746,3 +746,4 @@ IpcConfigTip(void)
fprintf
(
stderr
,
"shared memory or System V IPC semaphore configuration.
\n
"
);
fprintf
(
stderr
,
"See the FAQ for more detailed information
\n
"
);
}
#endif
src/backend/tcop/pquery.c
View file @
58fdae0d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.1
8 1998/09/01 04:32:1
4 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.1
9 1998/09/02 23:05:3
4 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -210,7 +210,7 @@ ProcessQueryDesc(QueryDesc *queryDesc)
Query
*
parseTree
;
Plan
*
plan
;
int
operation
;
char
*
tag
;
char
*
tag
=
NULL
;
EState
*
state
;
TupleDesc
attinfo
;
...
...
src/backend/utils/misc/trace.c
View file @
58fdae0d
...
...
@@ -81,8 +81,6 @@ static char *opt_names[] = {
*/
int
pg_options
[
NUM_PG_OPTIONS
]
=
{
0
};
static
int
openlog_done
=
0
;
/*
* Print a timestamp and a message to stdout if the trace flag
* indexed by the flag value is set.
...
...
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