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
08fb7375
Commit
08fb7375
authored
Jan 19, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update vacuum comments.
parent
2317e714
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
23 deletions
+20
-23
src/backend/commands/vacuum.c
src/backend/commands/vacuum.c
+20
-23
No files found.
src/backend/commands/vacuum.c
View file @
08fb7375
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.13
5 2000/01/15 22:43:22 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.13
6 2000/01/19 22:23:00 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -285,6 +285,9 @@ vc_getrels(NameData *VacRelP)
if
(
NameStr
(
*
VacRelP
))
{
/* we could use the cache here, but it is clearer to use
* scankeys for both vacuum cases, bjm 2000/01/19
*/
ScanKeyEntryInitialize
(
&
key
,
0x0
,
Anum_pg_class_relname
,
F_NAMEEQ
,
PointerGetDatum
(
NameStr
(
*
VacRelP
)));
...
...
@@ -766,7 +769,6 @@ vc_scanheap(VRelStats *vacrelstats, Relation onerel,
}
else
if
(
!
TransactionIdIsInProgress
(
tuple
.
t_data
->
t_xmin
))
{
/*
* Not Aborted, Not Committed, Not in Progress -
* so it's from crashed process. - vadim 11/26/96
...
...
@@ -817,7 +819,6 @@ vc_scanheap(VRelStats *vacrelstats, Relation onerel,
}
else
if
(
!
TransactionIdIsInProgress
(
tuple
.
t_data
->
t_xmax
))
{
/*
* Not Aborted, Not Committed, Not in Progress - so it
* from crashed process. - vadim 06/02/97
...
...
@@ -920,6 +921,7 @@ vc_scanheap(VRelStats *vacrelstats, Relation onerel,
}
else
dobufrel
=
true
;
if
(
tempPage
!=
(
Page
)
NULL
)
{
/* Some tuples are gone */
PageRepairFragmentation
(
tempPage
);
...
...
@@ -1307,8 +1309,9 @@ vc_rpfheap(VRelStats *vacrelstats, Relation onerel,
if
(
vc_enough_space
(
fraged_pages
->
vpl_pagedesc
[
i
],
tlen
))
break
;
}
if
(
i
==
num_fraged_pages
)
/* can't move item
* anywhere */
/* can't move item anywhere */
if
(
i
==
num_fraged_pages
)
{
for
(
i
=
0
;
i
<
num_vtmove
;
i
++
)
{
...
...
@@ -1341,16 +1344,12 @@ vc_rpfheap(VRelStats *vacrelstats, Relation onerel,
free_vtmove
--
;
num_vtmove
++
;
/*
* All done ?
*/
/* All done ? */
if
(
!
(
tp
.
t_data
->
t_infomask
&
HEAP_UPDATED
)
||
tp
.
t_data
->
t_xmin
<
XmaxRecent
)
break
;
/*
* Well, try to find tuple with old row version
*/
/* Well, try to find tuple with old row version */
for
(;;)
{
Buffer
Pbuf
;
...
...
@@ -1683,8 +1682,8 @@ failed to add item with len = %u to page %u (free space %u, nusd %u, noff %u)",
elog
(
ERROR
,
"HEAP_MOVED_IN was not expected (2)"
);
if
(
tuple
.
t_data
->
t_infomask
&
HEAP_MOVED_OFF
)
{
if
(
chain_tuple_moved
)
/* some chains was moved
* while */
/* some chains was moved while */
if
(
chain_tuple_moved
)
{
/* cleaning this page */
Assert
(
vpc
->
vpd_offsets_free
>
0
);
for
(
i
=
0
;
i
<
vpc
->
vpd_offsets_free
;
i
++
)
...
...
@@ -1831,9 +1830,7 @@ failed to add item with len = %u to page %u (free space %u, nusd %u, noff %u)",
vacrelstats
->
num_tuples
,
keep_tuples
);
}
/*
* clean moved tuples from last page in Nvpl list
*/
/* clean moved tuples from last page in Nvpl list */
if
(
vpc
->
vpd_blkno
==
blkno
-
1
&&
vpc
->
vpd_offsets_free
>
0
)
{
buf
=
ReadBuffer
(
onerel
,
vpc
->
vpd_blkno
);
...
...
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