| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace the now-incompatible-with-core contrib/tsearch2 module with a | Tom Lane | 2007-11-13 | 5 | -1553/+0 |
| | | | | | | | | | compatibility package. This supports importing dumps from past versions using tsearch2, and provides the old names and API for most functions that were changed. (rewrite(ARRAY[...]) is a glaring omission, though.) Pavel Stehule and Tom Lane | ||||
| * | Fix PGXS conventions so that extensions can be built against Postgres | Tom Lane | 2007-06-26 | 1 | -2/+3 |
| | | | | | | | installations whose pg_config program does not appear first in the PATH. Per gripe from Eddie Stanley and subsequent discussions with Fabien Coelho and others. | ||||
| * | Fix parser bug on Windows with UTF8 encoding and C locale, the reason was | Teodor Sigaev | 2007-03-22 | 1 | -2/+2 |
| | | | | | sizeof(wchar_t) = 2 instead of 4. | ||||
| * | Fix localization support for multibyte encoding and C locale. | Teodor Sigaev | 2007-01-15 | 1 | -30/+104 |
| | | | | | Slightly reworked patch from Tatsuo Ishii | ||||
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 1 | -7/+7 |
| | | |||||
| * | Add CVS tag lines to files that were lacking them. | Bruce Momjian | 2006-03-11 | 4 | -0/+8 |
| | | |||||
| * | Improve support of multibyte encoding: | Teodor Sigaev | 2005-12-12 | 2 | -0/+5 |
| | | | | | | | | | - tsvector_(in|out) - tsquery_(in|out) - to_tsvector - to_tsquery, plainto_tsquery - 'simple' dictionary | ||||
| * | Improve tag recognizing | Teodor Sigaev | 2005-12-08 | 2 | -2/+22 |
| | | |||||
| * | Fix small memory leak | Teodor Sigaev | 2005-12-07 | 1 | -1/+1 |
| | | |||||
| * | Improve word parser. | Teodor Sigaev | 2005-12-07 | 2 | -1/+51 |
| | | | | | | | - allow ~ in filenames - -8.2.1 now is '-' and '8.2.1' instead of '-8.2' '.' '3' - '.text' now is not a file | ||||
| * | Improve word parser. | Teodor Sigaev | 2005-12-05 | 2 | -22/+65 |
| | | | | | | | - improve file and path recognition - fix misspeling - improve tag recognition | ||||
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 2 | -614/+678 |
| | | | | | | | | | | comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X. | ||||
| * | Fixes motivated by snake and spoonbill pgbuildfarm members | Teodor Sigaev | 2005-11-22 | 1 | -3/+3 |
| | | |||||
| * | remove forgotten // comments | Teodor Sigaev | 2005-11-21 | 1 | -2/+0 |
| | | |||||
| * | Text parser rewritten: | Teodor Sigaev | 2005-11-21 | 6 | -363/+1175 |
| | | | | | | | | | | | | - supports multibyte encodings - more strict rules for lexemes - flex isn't used Add: - tsquery plainto_tsquery(text) Function makes tsquery from plain text. - &&, ||, !! operation for tsquery for combining tsquery from it's parts: 'foo & bar' || 'asd' => 'foo & bar | asd' | ||||
| * | Fix several contrib makefiles that failed in VPATH builds, particularly | Tom Lane | 2005-10-18 | 1 | -4/+5 |
| | | | | | when not using gcc (which has slightly nonstandard inclusion rules). | ||||
| * | Suppress warnings on platforms where fprintf is a macro (eg, recent | Tom Lane | 2005-10-15 | 1 | -0/+1 |
| | | | | | | Fedora). This was already done by somebody for the core flex files, but these contrib files seem to have been missed. | ||||
| * | PGXS should be set with := not =, as specified in the documentation, | Tom Lane | 2005-09-27 | 1 | -2/+2 |
| | | | | | to avoid useless multiple executions of pg_config. | ||||
| * | 1 Update Snowball sources | Teodor Sigaev | 2005-09-15 | 1 | -8/+13 |
| | | | | | 2 Makefile fixes | ||||
| * | Fix some more 'old-style parameter declaration' warnings. | Tom Lane | 2004-10-25 | 1 | -7/+17 |
| | | |||||
| * | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| | | |||||
| * | 1 Eliminate duplicate field HLWORD->skip | Teodor Sigaev | 2004-06-28 | 1 | -21/+59 |
| | | | | | | | 2 Rework support for html tags in parser 3 add HighlightAll to headline function for generating highlighted whole text with saved html tags | ||||
| * | Add %option nodefault to all our flex lexers. Fix a couple of rule gaps | Tom Lane | 2004-02-24 | 1 | -0/+1 |
| | | | | | | | exposed thereby. AFAICT these would not lead to any worse problems than junk emitted on the backend's stdout, but we should have the option to catch possible worse errors in future. | ||||
| * | One more fix confusion | Teodor Sigaev | 2003-12-05 | 1 | -1/+1 |
| | | |||||
| * | Avoid confusion start_parse_str function with tsearch V1 | Teodor Sigaev | 2003-12-05 | 2 | -6/+7 |
| | | |||||
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| | | |||||
| * | Persuade tsearch/tsearch2 to work (or at least pass their regression | Tom Lane | 2003-09-14 | 1 | -13/+0 |
| | | | | | | | | | tests) when using flex 2.5.31. The fix is to *not* try to use palloc and pfree for allocations within the lexer; when you do that, the yy_buffer_stack gets freed at inopportune times. The code is already set up to do manual deallocation, so I see no particular advantage to using palloc anyway. | ||||
| * | Bring the makefiles up to our conventions. | Peter Eisentraut | 2003-08-23 | 1 | -4/+3 |
| | | |||||
| * | Eliminate function start_parse_fh and macro YY_INPUT | Teodor Sigaev | 2003-08-15 | 2 | -39/+0 |
| | | |||||
| * | Sub-Makefiles need to explicitly add CFLAGS_SL to CFLAGS, else their | Tom Lane | 2003-08-04 | 1 | -0/+1 |
| | | | | | object files do not get built with -fpic. | ||||
| * | Fix to build correctly outside source tree. | Tom Lane | 2003-08-04 | 1 | -1/+1 |
| | | |||||
| * | make sub-Makefiles in the sub-directories | Teodor Sigaev | 2003-08-04 | 1 | -0/+27 |
| | | |||||
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -3/+2 |
| | | |||||
| * | tsearch2 module | Teodor Sigaev | 2003-07-21 | 4 | -0/+447 |
