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
fb7548f4
Commit
fb7548f4
authored
Sep 04, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Invalidate temp entries for aborted transactions.
parent
b4a607c9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
76 additions
and
22 deletions
+76
-22
src/backend/access/transam/xact.c
src/backend/access/transam/xact.c
+3
-1
src/backend/catalog/indexing.c
src/backend/catalog/indexing.c
+5
-4
src/backend/utils/cache/temprel.c
src/backend/utils/cache/temprel.c
+65
-15
src/include/utils/temprel.h
src/include/utils/temprel.h
+3
-2
No files found.
src/backend/access/transam/xact.c
View file @
fb7548f4
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.4
8 1999/09/04 18:42:15 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.4
9 1999/09/04 19:55:48 momjian
Exp $
*
* NOTES
* Transaction aborts can now occur two ways:
...
...
@@ -151,6 +151,7 @@
#include "commands/vacuum.h"
#include "libpq/be-fsstubs.h"
#include "storage/proc.h"
#include "utils/temprel.h"
#include "utils/inval.h"
#include "utils/portal.h"
#include "utils/relcache.h"
...
...
@@ -1022,6 +1023,7 @@ AbortTransaction()
RecordTransactionAbort
();
RelationPurgeLocalRelation
(
false
);
DestroyNoNameRels
();
invalidate_temp_relations
();
AtEOXact_nbtree
();
AtAbort_Cache
();
AtAbort_Locks
();
...
...
src/backend/catalog/indexing.c
View file @
fb7548f4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.4
2 1999/07/20 17:14:06
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.4
3 1999/09/04 19:55:49
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -449,13 +449,14 @@ ClassNameIndexScan(Relation heapRelation, char *relName)
Relation
idesc
;
ScanKeyData
skey
[
1
];
HeapTuple
tuple
;
char
*
hold_rel
;
/*
* we have to do this before looking in system tables because temp
* table namespace takes precedence
*/
if
((
tuple
=
get_temp_rel_by_name
(
relName
))
!=
NULL
)
re
turn
heap_copytuple
(
tuple
)
;
if
((
hold_rel
=
get_temp_rel_by_name
(
relName
))
!=
NULL
)
re
lName
=
hold_rel
;
ScanKeyEntryInitialize
(
&
skey
[
0
],
(
bits16
)
0x0
,
...
...
src/backend/utils/cache/temprel.c
View file @
fb7548f4
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/temprel.c,v 1.1
0 1999/07/17 20:18:02
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/temprel.c,v 1.1
1 1999/09/04 19:55:50
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,13 +18,13 @@
* When a temp table is created, a linked list of temp table tuples is
* stored here. When a relname cache lookup is done, references to user-named
* temp tables are converted to the internal temp table names.
*
*/
#include <sys/types.h>
#include "postgres.h"
#include "access/heapam.h"
#include "access/xact.h"
#include "catalog/heap.h"
#include "catalog/index.h"
#include "utils/temprel.h"
...
...
@@ -41,7 +41,10 @@ static List *temp_rels = NIL;
typedef
struct
TempTable
{
char
*
user_relname
;
HeapTuple
pg_class_tuple
;
char
*
relname
;
Oid
relid
;
char
relkind
;
TransactionId
xid
;
}
TempTable
;
...
...
@@ -55,11 +58,15 @@ create_temp_relation(char *relname, HeapTuple pg_class_tuple)
temp_rel
=
palloc
(
sizeof
(
TempTable
));
temp_rel
->
user_relname
=
palloc
(
NAMEDATALEN
);
temp_rel
->
relname
=
palloc
(
NAMEDATALEN
);
/* save user-supplied name */
strcpy
(
temp_rel
->
user_relname
,
relname
);
temp_rel
->
pg_class_tuple
=
heap_copytuple
(
pg_class_tuple
);
StrNCpy
(
temp_rel
->
relname
,
((
Form_pg_class
)
GETSTRUCT
(
pg_class_tuple
))
->
relname
.
data
,
NAMEDATALEN
);
temp_rel
->
relid
=
pg_class_tuple
->
t_data
->
t_oid
;
temp_rel
->
relkind
=
((
Form_pg_class
)
GETSTRUCT
(
pg_class_tuple
))
->
relkind
;
temp_rel
->
xid
=
GetCurrentTransactionId
();
temp_rels
=
lcons
(
temp_rel
,
temp_rels
);
...
...
@@ -79,13 +86,10 @@ remove_all_temp_relations(void)
while
(
l
!=
NIL
)
{
TempTable
*
temp_rel
=
lfirst
(
l
);
Form_pg_class
classtuple
;
classtuple
=
(
Form_pg_class
)
GETSTRUCT
(
temp_rel
->
pg_class_tuple
);
next
=
lnext
(
l
);
/* do this first, l is deallocated */
if
(
classtuple
->
relkind
!=
RELKIND_INDEX
)
if
(
temp_rel
->
relkind
!=
RELKIND_INDEX
)
{
char
relname
[
NAMEDATALEN
];
...
...
@@ -94,7 +98,7 @@ remove_all_temp_relations(void)
heap_destroy_with_catalog
(
relname
);
}
else
index_destroy
(
temp_rel
->
pg_class_tuple
->
t_data
->
t_o
id
);
index_destroy
(
temp_rel
->
rel
id
);
l
=
next
;
}
...
...
@@ -118,10 +122,56 @@ remove_temp_relation(Oid relid)
{
TempTable
*
temp_rel
=
lfirst
(
l
);
if
(
temp_rel
->
pg_class_tuple
->
t_data
->
t_oid
==
relid
)
if
(
temp_rel
->
relid
==
relid
)
{
pfree
(
temp_rel
->
user_relname
);
pfree
(
temp_rel
->
relname
);
pfree
(
temp_rel
);
/* remove from linked list */
if
(
prev
!=
NIL
)
{
lnext
(
prev
)
=
lnext
(
l
);
pfree
(
l
);
l
=
lnext
(
prev
);
}
else
{
temp_rels
=
lnext
(
l
);
pfree
(
l
);
l
=
temp_rels
;
}
}
else
{
prev
=
l
;
l
=
lnext
(
l
);
}
}
MemoryContextSwitchTo
(
oldcxt
);
}
/* remove entries from aborted transactions */
void
invalidate_temp_relations
(
void
)
{
MemoryContext
oldcxt
;
List
*
l
,
*
prev
;
oldcxt
=
MemoryContextSwitchTo
((
MemoryContext
)
CacheCxt
);
prev
=
NIL
;
l
=
temp_rels
;
while
(
l
!=
NIL
)
{
TempTable
*
temp_rel
=
lfirst
(
l
);
if
(
temp_rel
->
xid
==
GetCurrentTransactionId
())
{
pfree
(
temp_rel
->
user_relname
);
pfree
(
temp_rel
->
pg_class_tupl
e
);
pfree
(
temp_rel
->
relnam
e
);
pfree
(
temp_rel
);
/* remove from linked list */
if
(
prev
!=
NIL
)
...
...
@@ -148,7 +198,7 @@ remove_temp_relation(Oid relid)
MemoryContextSwitchTo
(
oldcxt
);
}
HeapTuple
char
*
get_temp_rel_by_name
(
char
*
user_relname
)
{
List
*
l
;
...
...
@@ -158,7 +208,7 @@ get_temp_rel_by_name(char *user_relname)
TempTable
*
temp_rel
=
lfirst
(
l
);
if
(
strcmp
(
temp_rel
->
user_relname
,
user_relname
)
==
0
)
return
temp_rel
->
pg_class_tupl
e
;
return
temp_rel
->
relnam
e
;
}
return
NULL
;
}
src/include/utils/temprel.h
View file @
fb7548f4
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: temprel.h,v 1.
4 1999/07/15 15:21:43
momjian Exp $
* $Id: temprel.h,v 1.
5 1999/09/04 19:55:50
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -17,7 +17,8 @@
void
create_temp_relation
(
char
*
relname
,
HeapTuple
pg_class_tuple
);
void
remove_all_temp_relations
(
void
);
void
invalidate_temp_relations
(
void
);
void
remove_temp_relation
(
Oid
relid
);
HeapTuple
get_temp_rel_by_name
(
char
*
user_relname
);
char
*
get_temp_rel_by_name
(
char
*
user_relname
);
#endif
/* TEMPREL_H */
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