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
a38365e0
Commit
a38365e0
authored
28 years ago
by
Vadim B. Mikheev
Browse files
Options
Downloads
Patches
Plain Diff
New structures for new vacuum.
parent
948720ee
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/commands/vacuum.h
+14
-7
14 additions, 7 deletions
src/include/commands/vacuum.h
with
14 additions
and
7 deletions
src/include/commands/vacuum.h
+
14
−
7
View file @
a38365e0
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: vacuum.h,v 1.
2
1996/1
0/18 08:15:58
vadim Exp $
* $Id: vacuum.h,v 1.
3
1996/1
1/27 07:35:06
vadim Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -23,17 +23,24 @@ typedef VAttListData *VAttList;
typedef
struct
VPageDescrData
{
BlockNumber
vpd_blkno
;
/* BlockNumber of this Page */
Size
vpd_free
;
/* FreeSpace on this Page */
uint16
vpd_noff
;
/* Number of dead tids */
uint16
vpd_nusd
;
/* Number of OffNums used by vacuum */
uint16
vpd_noff
;
/* Number of OffNums free or to be free */
OffsetNumber
vpd_voff
[
1
];
/* Array of its OffNums */
}
VPageDescrData
;
typedef
VPageDescrData
*
VPageDescr
;
typedef
struct
VPageListData
{
int
vpl_nemend
;
/* Number of "empty" end-pages */
int
vpl_npages
;
/* Number of pages in vpl_pgdesc */
VPageDescr
*
vpl_pgdesc
;
/* Descriptions of pages */
}
VPageListData
;
typedef
VPageListData
*
VPageList
;
typedef
struct
VRelListData
{
Oid
vrl_relid
;
VAttList
vrl_attlist
;
VPageDescr
*
vrl_pgdsc
;
int
vrl_nrepg
;
int
vrl_ntups
;
int
vrl_npages
;
bool
vrl_hasindex
;
...
...
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