aboutsummaryrefslogtreecommitdiff
path: root/contrib/intarray
Commit message (Collapse)AuthorAge
...
* The attached patch enables the contrib subtree to build cleanly underBruce Momjian2001-06-18
| | | | | | | | | | | | | | | | | | | | | Cygwin with the possible exception of mSQL-interface. Since I don't have mSQL installed, I skipped this tool. Except for dealing with a missing getopt.h (oid2name) and HUGE (seg), the bulk of the patch uses the standard PostgreSQL approach to deal with Windows DLL issues. I tested the build aspect of this patch under Cygwin and Linux without any ill affects. Note that I did not actually attempt to test the code for functionality. The procedure to apply the patch is as follows: $ # save the attachment as /tmp/contrib.patch $ # change directory to the top of the PostgreSQL source tree $ patch -p0 </tmp/contrib.patch Jason
* contrib/intarray updates from Oleg Bartunov:Tom Lane2001-06-11
| | | | | it's reimplemented to use function interface version 1 and special treating of degenerated signatures.
* Ooops, forgot to commit Makefile along with other changes.Tom Lane2001-05-31
|
* Updates to make GIST work with multi-key indexes (from Oleg BartunovTom Lane2001-05-31
| | | | | and Teodor Sigaev). Declare key values as Datum where appropriate, rather than char* (Tom Lane).
* Run pgindent on _int.c, for Tom Lane. I had skipped this file becauseBruce Momjian2001-03-22
| | | | | of a complex macro that pgindent complained about. Hand-adjusted macro for pgindent run.
* Repair intarray's problems with TOASTed input, avoid scribbling onTom Lane2001-03-20
| | | | | source data, improve split algorithm for intbig_ops. Oleg Bartunov with some kibitzing from Tom Lane.
* Restore include-file updates, and fix some of the more glaring macroTom Lane2001-03-18
| | | | | sloppiness (insufficient parenthesization, etc). It still fails regress test for me, however.
* Restore Peter's makefile fixes.Tom Lane2001-03-18
|
* Update contrib intarray to Jan 25 version.Bruce Momjian2001-03-17
|
* Make sure -L and -I's for our source tree are always before system includePeter Eisentraut2001-02-20
| | | | or library directories on the command line.
* Add // -> /* */ mapping to pgindent.Bruce Momjian2001-02-12
|
* Restructure the key include files per recent pghackers discussion: thereTom Lane2001-02-10
| | | | | | | | | | | 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.
* Clean up garbage.Peter Eisentraut2001-01-13
|
* Surely one README file is enough.Peter Eisentraut2001-01-13
|
* Surely we don't need a 7.0.3 makefile in 7.1.Peter Eisentraut2001-01-12
|
* Add to DROP todo.Bruce Momjian2001-01-12
|
* commit Oleg and Teodor's RD-tree implementation ... this provides theMarc G. Fournier2001-01-12
regression tests for the GiST changes ... this should be integrated into the regular regression tests similar to Vadim's SPI contrib stuff ...