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
a8a1f158
Commit
a8a1f158
authored
Jun 22, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uint -> uint32, portability.
parent
90edb265
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
5 deletions
+24
-5
contrib/reindex/reindex
contrib/reindex/reindex
+2
-2
doc/src/sgml/maintenance.sgml
doc/src/sgml/maintenance.sgml
+20
-1
src/include/funcapi.h
src/include/funcapi.h
+2
-2
No files found.
contrib/reindex/reindex
View file @
a8a1f158
#!/bin/sh
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- #
# Package : reindexdb Version : $Revision: 1.
1
$
# Package : reindexdb Version : $Revision: 1.
2
$
# Date : 05/08/2002 Author : Shaun Thomas
# Req : psql, sh, perl, sed Type : Utility
#
...
...
@@ -10,7 +10,7 @@
# Function Definitions
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- #
function
usage
()
usage
()
{
echo
"
$CMDNAME
reindexes a PostgreSQL database."
echo
...
...
doc/src/sgml/maintenance.sgml
View file @
a8a1f158
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/maintenance.sgml,v 1.1
4 2002/06/13 05:15:22
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/maintenance.sgml,v 1.1
5 2002/06/22 04:08:07
momjian Exp $
-->
<chapter id="maintenance">
...
...
@@ -367,6 +367,25 @@ VACUUM
</sect1>
<sect1 id="routine-reindex">
<title>Routine Reindexing</title>
<indexterm zone="routine-reindex">
<primary>reindex</primary>
</indexterm>
<para>
<productname>PostgreSQL</productname> is unable to reuse index pages
in some cases. The problem is that if indexed rows are deleted, those
indexes pages can only be reused by rows with similar values. In
cases where low indexed rows are deleted and newly inserted rows have
high values, disk space used by the index will grow indefinately, even
if <command>VACUUM</> is run frequently.
TO BE COMPLETED 2002-06-22 bjm
</para>
</sect1>
<sect1 id="logfile-maintenance">
<title>Log File Maintenance</title>
...
...
src/include/funcapi.h
View file @
a8a1f158
...
...
@@ -66,10 +66,10 @@ typedef struct
typedef
struct
{
/* Number of times we've been called before */
uint
call_cntr
;
uint
32
call_cntr
;
/* Maximum number of calls */
uint
max_calls
;
uint
32
max_calls
;
/* pointer to result slot */
TupleTableSlot
*
slot
;
...
...
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