Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Put back another not-so-unnecessary #include, per report from Hiroshi Saito. | Tom Lane | 2006-07-16 |
| | |||
* | Fix getDatumCopy(): don't use store_att_byval to copy into a Datum | Tom Lane | 2006-07-16 |
| | | | | | | variable (this accounts for regression failures on PPC64, and in fact won't work on any big-endian machine). Get rid of hardwired knowledge about datum size rules; make it look just like datumCopy(). | ||
* | Improve error message wording. | Tom Lane | 2006-07-16 |
| | |||
* | Put back some more not-so-unused-as-all-that #includes. This un-breaks | Tom Lane | 2006-07-15 |
| | | | | | the EXEC_BACKEND code on my machines, so hopefully it will fix the Windows buildfarm members. | ||
* | Fix some pgcrypto portability issues, per Marko Kreen. | Tom Lane | 2006-07-15 |
| | |||
* | Fix some missing inclusions identified with new pgcheckdefines tool. | Tom Lane | 2006-07-15 |
| | |||
* | Fix some makefiles that fail to yield good results from 'make -qp'. | Tom Lane | 2006-07-15 |
| | | | | | This doesn't really matter for ordinary building of Postgres, but it's useful for automated checks, such as my just-committed pgcheckdefines. | ||
* | Create a tool to catch #include omissions that might not result in any | Tom Lane | 2006-07-15 |
| | | | | | | compiler warning, specifically #ifdef or #if defined tests on symbols that are defined in a file not included. The results are a bit noisy and require care to interpret, but it's a lot better than no tool at all. | ||
* | Fix misguided removal of access/tuptoaster.h inclusion, per Kris Jurka. | Tom Lane | 2006-07-14 |
| | | | | | | I'm going to insist on reversion of this entire patch unless pgrminclude is upgraded to a less broken state, but in the meantime let's get contrib passing regression again. | ||
* | In PGP public key tests, encrypt the secret key with AES not CAST5, | Tom Lane | 2006-07-14 |
| | | | | so that the test passes with or without OpenSSL. Marko Kreen | ||
* | Fix another passel of include-file breakage. Kris Jurka, Tom Lane | Tom Lane | 2006-07-14 |
| | |||
* | Add dependency to fix parallel-make race condition. Alexander Dupuy | Tom Lane | 2006-07-14 |
| | |||
* | Have find_static skip main() functions. | Bruce Momjian | 2006-07-14 |
| | |||
* | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 |
| | |||
* | Fix a passel of recently-committed violations of the rule 'thou shalt | Tom Lane | 2006-07-14 |
| | | | | | have no other gods before c.h'. Also remove some demonstrably redundant #include lines, mostly of <errno.h> which was added to c.h years ago. | ||
* | Revert part of recent include patch not ready for application. | Bruce Momjian | 2006-07-14 |
| | |||
* | Add additional includes needed on some platforms. | Bruce Momjian | 2006-07-14 |
| | |||
* | Move CFLAGS for pginclude to the end of the command line. | Bruce Momjian | 2006-07-14 |
| | |||
* | Minor doc tweak: replace a "--" with "—". | Neil Conway | 2006-07-14 |
| | |||
* | Reorder the entries in the function section of the manual, to ensure they | Neil Conway | 2006-07-13 |
| | | | | | are alphabetically ordered. I believe the tables were correctly ordered in the past, but some of them had subsequently regressed. | ||
* | Move math.h after postgresql.h | Bruce Momjian | 2006-07-13 |
| | |||
* | Skip stripping postgres_fe.h include file. | Bruce Momjian | 2006-07-13 |
| | |||
* | More include file adjustments. | Bruce Momjian | 2006-07-13 |
| | |||
* | More include file adjustments. | Bruce Momjian | 2006-07-13 |
| | |||
* | Adjust /contrib for new include file contents. | Bruce Momjian | 2006-07-13 |
| | |||
* | Allow include files to compile own their own. | Bruce Momjian | 2006-07-13 |
| | | | | | | | Strip unused include files out unused include files, and add needed includes to C files. The next step is to remove unused include files in C files. | ||
* | Improve pginclude tools to process include file usage by other include files. | Bruce Momjian | 2006-07-13 |
| | |||
* | Remove trailing comma from CreateStmtLikeOption enum definition. This | Neil Conway | 2006-07-13 |
| | | | | is harmless, but it causes a warning with Tru64's cc. | ||
* | Be consistent about not using ECHO_N/ECHO_C (seems unnecessary on Linux). | Peter Eisentraut | 2006-07-13 |
| | |||
* | Fix C++-style comment. | Neil Conway | 2006-07-13 |
| | |||
* | "Annual" pgcrypto update from Marko Kreen: | Neil Conway | 2006-07-13 |
| | | | | | | | | | | | | | | | | Few cleanups and couple of new things: - add SHA2 algorithm to older OpenSSL - add BIGNUM math to have public-key cryptography work on non-OpenSSL build. - gen_random_bytes() function The status of SHA2 algoritms and public-key encryption can now be changed to 'always available.' That makes pgcrypto functionally complete and unless there will be new editions of AES, SHA2 or OpenPGP standards, there is no major changes planned. | ||
* | Fix pgrminclude to work for stripping include files. | Bruce Momjian | 2006-07-12 |
| | |||
* | Update schema USAGE permission description. | Bruce Momjian | 2006-07-12 |
| | |||
* | Clean up for warning: | Joe Conway | 2006-07-12 |
| | | | | | | | | | fe-auth.c:573: warning: passing argument 1 of 'free' discards qualifiers from pointer target type pg_krb5_authname used to return a (const char *) to memory allocated by krb. Somewhere along the lines this was changed so that a copy was made, returned, and freed instead. However the const modifier was never removed. | ||
* | Apply entab fix from Marko Kreen for these problems: | Alvaro Herrera | 2006-07-11 |
| | | | | | | | | - halt.c did not include stdlib.h, thus missed exit() prototype - Makefile ignores BINDIR for install. - Makefile calls install with user/group args, thus failing for regular user. While trying it I noticed that the Makefile does not support VPATH builds ... | ||
* | Tweak fillfactor code as per my recent proposal. Fix nbtsort.c so that | Tom Lane | 2006-07-11 |
| | | | | | | it can handle small fillfactors for ordinary-sized index entries without failing on large ones; fix nbtinsert.c to distinguish leaf and nonleaf pages; change the minimum fillfactor to 10% for all index types. | ||
* | Improve pginclude tests. | Bruce Momjian | 2006-07-11 |
| | |||
* | Improve pginclude compile flags. | Bruce Momjian | 2006-07-11 |
| | |||
* | Update pginclude documentation. | Bruce Momjian | 2006-07-11 |
| | |||
* | Add support to GIN for =(anyarray,anyarray) operation | Teodor Sigaev | 2006-07-11 |
| | |||
* | Have pgrminclude process include files too. | Bruce Momjian | 2006-07-11 |
| | |||
* | Add $CFLAGS support to pgrminclude. | Bruce Momjian | 2006-07-11 |
| | |||
* | Move pgrminclude debug code to be more effective. | Bruce Momjian | 2006-07-11 |
| | |||
* | Improve shell script wrapping. | Bruce Momjian | 2006-07-11 |
| | |||
* | Add comments to pgrminclude. | Bruce Momjian | 2006-07-11 |
| | |||
* | Correct the description of the pg_get_viewdef() function. Do some nearby | Neil Conway | 2006-07-11 |
| | | | | SGML cleanup: sort table entries alphabetically. | ||
* | Alphabetically order reference to include files, "S"-"Z". | Bruce Momjian | 2006-07-11 |
| | |||
* | Alphabetically order reference to include files, "N" - "S". | Bruce Momjian | 2006-07-11 |
| | |||
* | Alphabetically order reference to include files, "G" - "M". | Bruce Momjian | 2006-07-11 |
| | |||
* | Add URL of code presentation to developers FAQ. | Bruce Momjian | 2006-07-11 |
| |