| Commit message (Collapse) | Author | Age |
|
|
|
| |
sizes.
|
| |
|
| |
|
|
|
|
|
| |
does not create members larger than allowed by the tar format. Also, fix
the generation of the tar header to conform to POSIX.
|
| |
|
|
|
|
| |
(INT64_FORMAT), which gettext cannot handle.
|
|
|
|
|
|
|
|
|
|
|
| |
should be pretty safe in practice, but it's probably better to be safe
than sorry.
I was actually looking for cases where NAMEDATALEN is assumed to be
32, but only found one. That's fixed too, as well as a few bits of
code cleanup.
Neil Conway
|
|
|
|
| |
Use off_t and size_t in pg_dump to handle file offset arithmetic correctly.
|
|
|
|
| |
as it appears in the schema dump, and index tags.
|
|
|
|
| |
that would do the wrong thing with BLOB OIDs exceeding 2G.
|
|
|
|
| |
but the basic capability seems to work.
|
|
|
|
| |
Mario Weilguni
|
|
|
|
| |
spacing. Also adds space for one-line comments.
|
|
|
|
| |
tests pass.
|
|
|
|
| |
in messages and documentation.
|
|
|
|
|
|
| |
--verbose messages, which had not been considered so far. Output to the
terminal should okay now; comments written into the dump are still English
only, which may or may not be the desirable thing.
|
|
|
|
| |
message clean up.
|
|
|
|
| |
- pgsql v7.0 compatbility
|
|
|
|
| |
- Fix crash due to null string pointer in some tar files with some libs
|
|
|
|
|
|
|
|
|
|
|
|
| |
the UDT/function order problem.
- Rudimentary support for dependencies in archives.
Uses dependencies to modify the OID used in sorting TOC
entries. This will NOT handle multi-level dependencies,
but will manage simple relationships like UDTs & their functions.
- Treat OIDs with more respect (avoid using ints, use macros
for conversion & comparison).
|
| |
|
|
|
|
|
|
|
| |
- Avoid forcing table name to lower case in FixupBlobXrefs
- Removed fmtId calls for all ArchiveEntry name fields. This fixes
quoting problems in trigger enable/disable code for mixed case
table names, and avoids commands like 'pg_restore -t '"TblA"'
|
|
|
|
|
| |
on some platforms, which is not too surprising considering how platform
specific these macros must be).
|
|
|
|
|
|
| |
- Add extra arg to formatStringLiteral to specify how to handle LF & TAB.
I opted for encoding them except in procedure bodies & comments
- Fixed bug in tar file input when restoring blobs
|
|
|
|
|
|
|
|
|
|
|
| |
are now separate files "postgres.h" and "postgres_fe.h", which are meant
to be the primary include files for backend .c files and frontend .c files
respectively. By default, only include files meant for frontend use are
installed into the installation include directory. There is a new make
target 'make install-all-headers' that adds the whole content of the
src/include tree to the installed fileset, for use by people who want to
develop server-side code without keeping the complete source tree on hand.
Cleaned up a whole lot of crufty and inconsistent header inclusions.
|
|
|
|
|
|
|
|
|
| |
- Fix handling of --tables=* (multiple tables never worked properly, AFAICT)
- strdup() the current user in DB routines
- Check results of IO routines more carefully.
- Check results of PQ routines more carefully.
Have not fixed index output yet.
|
|
|
|
|
| |
values, whether the local char type is signed or not. This is necessary
for portability. Per discussion on pghackers around 9/16/00.
|
|
|
|
|
|
| |
BLOB_BATCH_SIZE)
Prevent dumping of languages from template1.
|
|
|
|
| |
Dump template db in dumpall
|
|
|
|
|
| |
Fix for endian bug in TAR output
Nicer error messages in pg_dump
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Added code to dump 'Create Schema' statement (pg_dump)
- Don't bother to disable/enable triggers if we don't have a superuser (pg_restore)
- Cleaned up code for reconnecting to database.
- Force a reconnect as superuser before enabling/disabling triggers.
- Added & Removed --throttle (pg_dump)
- Fixed minor bug in language dumping code: expbuffres were not being reset.
- Fixed version number initialization in _allocAH (pg_backup_archiver.c)
- Added second connection when restoring BLOBs to allow temp. table to survive
(db reconnection causes temp tables to be lost).
|
|
- Support for BLOB output from pg_dump and input via pg_restore
- Support for direct DB connection in pg_restore
- Fixes in support for --insert flag
- pg_dump now outputs in modified OID order
|