Bruce Momjian
491545fff4
Do not require iconv for dbase conversion.
24 years ago
Bruce Momjian
3f94ff5400
Allow contrib/dbase to compile if HAVE_ICONV_H it not defined. This is
...
only a partial solution but a step in the right direction.
24 years ago
Bruce Momjian
eb36cdd562
Add needed libiconv link to contrib/dbase, per Christopher Kings-Lynne
24 years ago
Tatsuo Ishii
71d641cf15
Reflect Tom's change
24 years ago
Tom Lane
897083715b
Fix pgstattuple to acquire a read lock on the target table. This
...
prevents embarassments such as having the table dropped or truncated
partway through the scan. Also, fix free space calculation to include
pages that currently contain no tuples.
24 years ago
Peter Eisentraut
f9d87c66db
Fix warning
24 years ago
Bruce Momjian
cde5fae7c9
>>I confirmed the UNION hack is no longer required. Thanks! Is it too late
...
>>to change the README in contrib/dblink?
>>
>
> No, I don't think that's a problem. Send a patch.
>
Here's a (documentation only) patch for the contrib/dblink README.
Joe Conway
24 years ago
Hiroshi Inoue
aa82ac8ab2
Fix a lo_manage()'s bug.
24 years ago
Bruce Momjian
657499dbab
We forgot to mention in README.rtree_gist we implemented new
...
picksplit algorithm for Rtree. Please apply patch below to CVS
Oleg Bartunov
24 years ago
Bruce Momjian
8f73bb4da9
* include <endian.h> is not enough, include sys/types.h too
...
everywhere.
At least it was now detected correctly.
marko
24 years ago
Bruce Momjian
8aa538cfd5
* When postgres.h does not define BYTE_ENDIAN pgcrypto
...
produces garbage.
I learned the hard way that
#if UNDEFINED_1 == UNDEFINED_2
#error "gcc is idiot"
#endif
prints "gcc is idiot" ...
Affected are MD5/SHA1 in internal library, and also HMAC-MD5/HMAC-SHA1/
crypt-md5 which use them. Blowfish is ok, also Rijndael on at
least x86.
Big thanks to Daniel Holtzman who send me a build log which
contained warning:
md5.c:246: warning: `X' defined but not used
Yes, gcc is that helpful...
Please apply this.
--
marko
24 years ago
Bruce Momjian
c9483cb6e4
This patch mark datatype txtidx as 'extended' storage type.
...
Thanks.
Teodor Sigaev
24 years ago
Tom Lane
56f5dc9078
Remove bogus pg_amop insertion commands, per discussion of 25-Oct.
...
No change in results of script, but perhaps less confusion for people
reading it.
24 years ago
Bruce Momjian
3345da53ad
Update my2pg.pl for release.
24 years ago
Bruce Momjian
c78975f845
Include sys/types.h in crypt-des.c. FreeBSD netinet/in.h
...
needs it.
Seems it is getting compileable...
Marko Kreen
24 years ago
Bruce Momjian
60f777606f
Duh, my regexp's missed bunch of them. Here's next batch, this
...
should be all.
Marko Kreen
24 years ago
Bruce Momjian
540155b777
pgcrypto uses non-standard type uint, which causes compile
...
failures on FreeBSD. This patch replaces uint -> unsigned.
This was reported by Daniel Holtzman against 0.4pre3 standalone
package, but it needs fixing in contrib/pgcrypto too.
Marko Kreen
24 years ago
Peter Eisentraut
aff53b27f0
Make the yacc rules safe for parallel make. See discussion on pgsql-patches
...
and comment in src/backend/parser/Makefile for the technical details.
24 years ago
Bruce Momjian
d4337f6a7c
Read getopt() into an int, not char.
24 years ago
Bruce Momjian
d7a343d5ce
Add port number to pg_dumplo.
...
andrea gelmini
24 years ago
Bruce Momjian
149d13de74
When given oversized key, encrypt/decrypt corrupted
...
memory. This fixes it. Also a free() was missing.
marko
24 years ago
Bruce Momjian
62298f60b2
Add mention of another MySQL conversion tool.
24 years ago
Bruce Momjian
ea08e6cd55
New pgindent run with fixes suggested by Tom. Patch manually reviewed,
...
initdb/regression tests pass.
24 years ago
Bruce Momjian
c41b6b1b9c
Fix small problem Tom Lane found with pgindent run.
24 years ago
Bruce Momjian
cd01c32f55
Add trailing semicolon for Joe Conway
24 years ago
Bruce Momjian
6783b2372e
Another pgindent run. Fixes enum indenting, and improves #endif
...
spacing. Also adds space for one-line comments.
24 years ago
Bruce Momjian
b81844b173
pgindent run on all C files. Java run to follow. initdb/regression
...
tests pass.
25 years ago
Bruce Momjian
fde8edaf53
Add do { ... } while (0) to more bad macros.
25 years ago
Bruce Momjian
b4a57b0648
Add more missing 'do { ... } while (0)' in missing macros. Without it,
...
these macros fail in if/else cases:
#define X \
{ \
... \
}
{
if (...)
X;
else
...
}
with proper setup:
#define X \
do { \
... \
} while (0)
it works fine.
25 years ago
Tatsuo Ishii
f8aa02eb85
"time" is now a reserved keyword(changed to "mtime").
25 years ago
Tom Lane
4fec55af6c
Fix several problems with simple_prompt() --- the nastiest being that
...
the entered password would get echoed on some platforms, eg HPUX.
We have enough copies of this code that I'm thinking it ought to be
moved into libpq, but that's a task for another day.
25 years ago
Tom Lane
77f27d5ec3
Fix some portability problems (get it to compile, at least, on HP's cc)
25 years ago
Tom Lane
aa6970efff
Fix some portability problems (get it to compile, at least, on HP's cc)
25 years ago
Tom Lane
1e2779117d
Fix some portability problems (get it to compile, at least, on HP's cc)
25 years ago
Tom Lane
b261cb9fa1
Updated regression test for tsearch, from Teodor Sigaev.
25 years ago
Tom Lane
b57705673d
txtidx datatype for full text indexing with GiST.
...
From Oleg Bartunov and Teodor Sigaev.
25 years ago
Bruce Momjian
7ff432c9ad
1. Implemented binary search in array
...
Oleg Bartunov
25 years ago
Tom Lane
2d6b1f29fb
Update incorrect expected file. Use 'timestamp without time zone'
...
datatype in test, to try to avoid any dependency on local time zone.
25 years ago
Tom Lane
a5dafa3177
Tweak to test HAVE_GETOPT_H before including <getopt.h>, so as to
...
build on systems without.
25 years ago
Tom Lane
6d18c038b7
Fix a couple of stray // comments.
25 years ago
Bruce Momjian
43cadb9231
Add missing pgcrypto files.
25 years ago
Tatsuo Ishii
9a23885f72
Add pgstattuple
25 years ago
Bruce Momjian
9588084263
* regression tests
...
* minor doc updates
Marko Kreen
25 years ago
Tom Lane
14b0da2ac3
Changes:
...
1. gist__int_ops is now without lossy
2. added sort entry in picksplit
Oleg Bartunov
25 years ago
Tom Lane
5798ccc4a6
Update required due to recent changes in FigureColname.
25 years ago
Tom Lane
793bcc67b2
Remove mistakenly-included file, per request from John Gray.
25 years ago
Bruce Momjian
7d94ac3b23
Found type mismatch in random.c. Please apply this also.
...
Marko Kreen
25 years ago
Bruce Momjian
cff23429d6
I noticed that the contrib Makefiles were reorganized.
...
Converted pgcrypto one too.
* Changed default randomness source to libc random()
That way pgcrypto does not have any external dependencies
and should work everywhere.
* Re-enabled pgcrypto build in contrib/makefile
* contrib/README update - there is more stuff than
only 'hash functions'
* Noted the libc random fact in README.pgcrypto
Marko Kreen
25 years ago
Bruce Momjian
1bd0b3406a
No, file not needed.
25 years ago
Bruce Momjian
9a78cfc13b
Add new file.
25 years ago