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
4ab23937
Commit
4ab23937
authored
Sep 07, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tab completion for \d*.
parent
ee3c51d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
11 deletions
+8
-11
doc/FAQ
doc/FAQ
+3
-7
src/bin/psql/tab-complete.c
src/bin/psql/tab-complete.c
+5
-4
No files found.
doc/FAQ
View file @
4ab23937
Frequently Asked Questions (FAQ) for PostgreSQL
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: T
ue Sep 4 01:14:28
EDT 2001
Last updated: T
hu Sep 6 20:51:03
EDT 2001
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
@@ -557,12 +557,8 @@
...
@@ -557,12 +557,8 @@
You need to increase the postmaster's limit on how many concurrent
You need to increase the postmaster's limit on how many concurrent
backend processes it can start.
backend processes it can start.
In PostgreSQL 6.5 and up, the default limit is 32 processes. You can
The default limit is 32 processes. You can increase it by restarting
increase it by restarting the postmaster with a suitable -N value.
the postmaster with a suitable -N value or modifying postgresql.conf.
With the default configuration you can set -N as large as 1024. If you
need more, increase MAXBACKENDS in include/pg_config.h and rebuild.
You can set the default value of -N at configuration time, if you
like, using configure's --with-maxbackends switch.
Note that if you make -N larger than 32, you must also increase -B
Note that if you make -N larger than 32, you must also increase -B
beyond its default of 64; -B must be at least twice -N, and probably
beyond its default of 64; -B must be at least twice -N, and probably
...
...
src/bin/psql/tab-complete.c
View file @
4ab23937
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
*
*
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.3
6 2001/08/30 13:17:03 petere
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.3
7 2001/09/07 01:24:18 momjian
Exp $
*/
*/
/*----------------------------------------------------------------------
/*----------------------------------------------------------------------
...
@@ -263,9 +263,10 @@ psql_completion(char *text, int start, int end)
...
@@ -263,9 +263,10 @@ psql_completion(char *text, int start, int end)
};
};
static
char
*
backslash_commands
[]
=
{
static
char
*
backslash_commands
[]
=
{
"
\\
connect"
,
"
\\
copy"
,
"
\\
d"
,
"
\\
di"
,
"
\\
di"
,
"
\\
ds"
,
"
\\
dS"
,
"
\\
dv"
,
"
\\
connect"
,
"
\\
copy"
,
"
\\
d"
,
"
\\
da"
,
"
\\
dd"
,
"
\\
df"
,
"
\\
di"
,
"
\\
da"
,
"
\\
df"
,
"
\\
do"
,
"
\\
dt"
,
"
\\
e"
,
"
\\
echo"
,
"
\\
encoding"
,
"
\\
dl"
,
"
\\
do"
,
"
\\
dp"
,
"
\\
ds"
,
"
\\
dS"
,
"
\\
dt"
,
"
\\
dT"
,
"
\\
dv"
,
"
\\
g"
,
"
\\
h"
,
"
\\
i"
,
"
\\
l"
,
"
\\
e"
,
"
\\
echo"
,
"
\\
encoding"
,
"
\\
g"
,
"
\\
h"
,
"
\\
i"
,
"
\\
l"
,
"
\\
lo_import"
,
"
\\
lo_export"
,
"
\\
lo_list"
,
"
\\
lo_unlink"
,
"
\\
lo_import"
,
"
\\
lo_export"
,
"
\\
lo_list"
,
"
\\
lo_unlink"
,
"
\\
o"
,
"
\\
p"
,
"
\\
pset"
,
"
\\
q"
,
"
\\
qecho"
,
"
\\
r"
,
"
\\
set"
,
"
\\
t"
,
"
\\
unset"
,
"
\\
o"
,
"
\\
p"
,
"
\\
pset"
,
"
\\
q"
,
"
\\
qecho"
,
"
\\
r"
,
"
\\
set"
,
"
\\
t"
,
"
\\
unset"
,
"
\\
x"
,
"
\\
w"
,
"
\\
z"
,
"
\\
!"
,
NULL
"
\\
x"
,
"
\\
w"
,
"
\\
z"
,
"
\\
!"
,
NULL
...
...
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