Bruce Momjian
3bc6bdf322
Define snprintf() to call pg_snprintf() so our own snprintf-like
...
implementation doesn't export out via libpq and get used by a user
application.
21 years ago
Bruce Momjian
6521cd9ae1
Add 'static' to initdb.c file-global variables.
21 years ago
Neil Conway
30c1aa06bc
Replace an instance of $Id$ and an instance of $Header$ with $PostgreSQL$
21 years ago
Bruce Momjian
e3d7de6b99
Rename canonical encodings, per Peter:
...
UNICODE => UTF8
ALT => WIN866
WIN => WIN1251
TCVN => WIN1258
The old codes continue to work.
21 years ago
Tom Lane
0fc4ecf935
Finish up the flat-files project: get rid of GetRawDatabaseInfo() hack
...
in favor of looking at the flat file copy of pg_database during backend
startup. This should finally eliminate the various corner cases in which
backend startup fails unexpectedly because it isn't able to distinguish
live and dead tuples in pg_database. Simplify locking on pg_database
to be similar to the rules used with pg_shadow and pg_group, and eliminate
FlushRelationBuffers operations that were used only to reduce the odds
of failure of GetRawDatabaseInfo.
initdb forced due to addition of a trigger to pg_database.
21 years ago
Bruce Momjian
0542b1e2fe
Use _() macro consistently rather than gettext(). Add translation
...
macros around strings that were missing them.
21 years ago
Tom Lane
ee467c3530
Fix minor thinko in logic to set dump order when dumping from a pre-7.3
...
database: aggregates should be dumped in the same pass as operators,
not in the same pass as functions.
21 years ago
Tom Lane
bb1bd3276e
Adjust mkdir_p to do stat() before trying mkdir(). Avoids problems on
...
Solaris and should be a little faster anyway, since in most scenarios
all but perhaps the last path component will already exist.
21 years ago
Tom Lane
7969649bd5
Minor tweak to avoid unnecessary memory bloat when dumping extremely wide
...
column values in -d mode. Per report from Marty Scholes. This doesn't
completely solve the issue, because we still need multiple copies of the
field value, but at least one copy can be got rid of painlessly ...
21 years ago
Tom Lane
9d58b9645e
Make pg_dump and pg_restore handle binary archive formats correctly
...
when using stdout/stdin on Windows.
21 years ago
Tom Lane
889f038129
Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the
...
APPDATA directory on Windows. Magnus Hagander
21 years ago
Tom Lane
fd5437c78b
Fix breakage created by addition of separate 'acl pass' in pg_dump.
...
Also clean up incredibly poor style in TocIDRequired() usage.
21 years ago
Peter Eisentraut
5ca9687fe4
Add missing "ko".
21 years ago
Bruce Momjian
0960dc2293
Document why CREATE CONSTRAINT TRIGGER doesn't tab complete.
21 years ago
Tom Lane
bdbfd343a2
pg_dump dumped the wrong tablespace for an index (ie, the parent table's
...
tablespace instead of the index's own), except when the index was created
as a constraint. Report and fix by Tanida Yutaka.
21 years ago
Tom Lane
3e2e58ba37
New routine _getObjectDescription() failed to cope with some aspects of
...
pre-7.3 pg_dump archive files: namespace isn't there, and in some cases
te->tag may already be quotified. Per report from Alan Pevec and
followup testing.
21 years ago
Neil Conway
fa471dac02
Trivial fix: remove some stray leading whitespace.
21 years ago
Peter Eisentraut
f87e5b295c
Translation updates
21 years ago
Peter Eisentraut
bb60ef23ed
Translation updates
21 years ago
Peter Eisentraut
f099cb0ede
Translation updates
21 years ago
Peter Eisentraut
0d45116eb0
Translation updates
21 years ago
Peter Eisentraut
0be1166352
New translation
21 years ago
Peter Eisentraut
83ef003f2c
Translation updates
21 years ago
Tom Lane
299ae4356b
Adjust warning message about Windows console code page to point to
...
the right place in the docs, and gettext()ify it.
21 years ago
Peter Eisentraut
75112d4b5d
Translation updates
21 years ago
Bruce Momjian
29e58330a6
Change Win32 client configuration files from *.txt to *.conf.
21 years ago
Peter Eisentraut
66d8165a8b
Translation updates
21 years ago
Peter Eisentraut
f680aaeafa
Translation updates
21 years ago
Tom Lane
5f0a468454
Fix tracking of dump-order dependencies for stand-alone composite types.
...
Per report from Robert Koepferl.
21 years ago
Tom Lane
38498a28df
Clean up pg_dump's handling of ownership for indexes (including
...
pkey/unique constraint indexes) and schemas. Per report from
Michael Fuhr.
21 years ago
Peter Eisentraut
84620860d9
New translations
21 years ago
Peter Eisentraut
a58e738cd7
Translation updates
21 years ago
Peter Eisentraut
11ca6d580c
Translation updates
21 years ago
Tom Lane
8afe005f42
Consistently use geteuid() not getuid(); there were a few places deviating
...
from our long-established standard.
21 years ago
Tom Lane
a3f98d5795
Adjust lookup of client-side profile files (.pgpass and so on) as per
...
discussion on pgsql-hackers-win32 list. Documentation still needs to
be tweaked --- I'm not sure how to refer to the APPDATA folder in
user documentation.
21 years ago
Dennis Bjorklund
b8139ea397
Translation updates
21 years ago
Dennis Bjorklund
90f1507275
Translation updates
21 years ago
Dennis Bjorklund
883730edc8
Translation updates
21 years ago
Peter Eisentraut
381de28eb0
Translation updates
21 years ago
Peter Eisentraut
c43bd11683
Translation updates
21 years ago
Tom Lane
fdbeaaf90a
Keep translations in step with synopses.
21 years ago
Tom Lane
d877de9e6b
Make pg_dump --oids work when default_with_oids = off. Per report from
...
Michael Fuhr.
21 years ago
Peter Eisentraut
a2a5526ecb
Translation updates
21 years ago
Tom Lane
a17e589046
Adjust a few more copyright notices to match the format expected by
...
the src/tools/copyright script.
21 years ago
Tom Lane
7e1c8ef4fc
Some more missed copyright notices. Many of these look like they
...
should have been caught by the src/tools/copyright script ... why
weren't they?
21 years ago
Bruce Momjian
2daed8c5b3
Update copyrights that were missed.
21 years ago
PostgreSQL Daemon
2ff501590b
Tag appropriate files for rc3
...
21 years ago
Peter Eisentraut
e14018dc5e
Translation updates
21 years ago
Tom Lane
d9236a69fc
Make libpq default to localhost connections on machines without Unix-domain
...
sockets, rather than failing as it formerly did. Revert the
thereby-obsoleted patch to make psql supply the localhost default.
21 years ago
Tom Lane
361f354109
Make sure --with-pgport option propagates into postgresql.conf.
...
Per gripe from Josh Berkus.
21 years ago