diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 1999-11-17 22:18:46 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 1999-11-17 22:18:46 +0000 |
commit | 211ed36635e3135c1b2435d1ff87f07507ebbf0b (patch) | |
tree | 3707f47372078226cf839c65584daa07ff4c3024 /src/backend/utils/adt/pg_lzcompress.c | |
parent | 79c3b71c1be3a79ec2d1f4d64bdef13f0e0a086a (diff) | |
download | postgresql-211ed36635e3135c1b2435d1ff87f07507ebbf0b.tar.gz postgresql-211ed36635e3135c1b2435d1ff87f07507ebbf0b.zip |
Some minor corrections to the LZ compression. In fact I wanted to
HAVE the required OID's first.
Jan
Diffstat (limited to 'src/backend/utils/adt/pg_lzcompress.c')
-rw-r--r-- | src/backend/utils/adt/pg_lzcompress.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/utils/adt/pg_lzcompress.c b/src/backend/utils/adt/pg_lzcompress.c index 88721d30a2d..b3eb5e2a013 100644 --- a/src/backend/utils/adt/pg_lzcompress.c +++ b/src/backend/utils/adt/pg_lzcompress.c @@ -1,7 +1,7 @@ /* ---------- * pg_lzcompress.c - * - * $Header: /cvsroot/pgsql/src/backend/utils/adt/pg_lzcompress.c,v 1.1 1999/11/17 21:21:50 wieck Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/pg_lzcompress.c,v 1.2 1999/11/17 22:18:45 wieck Exp $ * * This is an implementation of LZ compression for PostgreSQL. * It uses a simple history table and generates 2-3 byte tags @@ -385,6 +385,8 @@ pglz_find_match (PGLZ_HistEntry **hstart, char *input, char *end, /* ---------- * pglz_compress - + * + * Compresses source into dest using strategy. * ---------- */ int @@ -580,6 +582,8 @@ pglz_compress (char *source, int slen, PGLZ_Header *dest, PGLZ_Strategy *strateg /* ---------- * pglz_decompress - + * + * Decompresses source into dest. * ---------- */ int |