| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2006-03-11 | Add CVS tag lines to files that were lacking them. | Bruce Momjian | |
| 2006-03-07 | Remove the stub support we had for UNION JOIN; per discussion, this is | Tom Lane | |
| not likely ever to be implemented seeing it's been removed from SQL2003. This allows getting rid of the 'filter' version of yylex() that we had in parser.c, which should save at least a few microseconds in parsing. | |||
| 2006-03-07 | 'make clean' should NOT remove *~ files. | Tom Lane | |
| 2006-03-06 | Enable standard_conforming_strings to be turned on. | Bruce Momjian | |
| Kevin Grittner | |||
| 2006-03-05 | Update copyright for 2006. Update scripts. | Bruce Momjian | |
| 2006-02-09 | C++ comments are verboten. Per gripe from Kris Jurka. | Tom Lane | |
| 2006-02-09 | Fix broken non-YYDEBUG case. | Tom Lane | |
| 2006-02-08 | Added just another test case. | Michael Meskes | |
| Fixed missing continuation line character. Do not translate $-quoting. Bit field notation belongs to a variable not a variable list. Output of line number only done by one function. | |||
| 2006-02-04 | Added C bit fields to ecpg parser | Michael Meskes | |
| Added some default rules to lexer Added log output to prepare statement Added some more stuff to a test case | |||
| 2006-02-04 | In ecpg, automatically double single quotes in $$ strings because | Bruce Momjian | |
| internally $$ strings are converted to single-quote strings. In ecpg, output newlines in commands using standard C escapes, rather than using literal newlines, which is not portable. | |||
| 2006-02-03 | Improve tab whitespace in file. | Bruce Momjian | |
| Add comment about $$ and '' SCONST strings. | |||
| 2006-02-02 | More spacing cleanups. | Bruce Momjian | |
| 2006-02-01 | Source code alignment fixes for preproc.y. | Bruce Momjian | |
| 2006-02-01 | More alignment improvements. | Bruce Momjian | |
| 2006-02-01 | Make pgc.l source code alignment consistent. | Bruce Momjian | |
| 2006-01-24 | - Synced parser and keyword list. | Michael Meskes | |
| - Added another test case. | |||
| 2006-01-17 | Data transferred binary is now put into the variables verbatim. | Michael Meskes | |
| Also added a test case for a binary cursor. | |||
| 2005-12-29 | Revert some careless search-and-replace: "ADD" in comment text should | Neil Conway | |
| not be replaced with "ADD_P". | |||
| 2005-12-27 | Protect ADD and HEADER symbols from conflicting with MIPS includes. | Bruce Momjian | |
| 2005-12-09 | Allow installation into directories containing spaces in the name. | Peter Eisentraut | |
| 2005-12-09 | Stamp libraries for 8.2 by updating minor library version numbers and | Bruce Momjian | |
| Win32 library files. | |||
| 2005-12-02 | Added special handling of CONNECTION variable that is used by ECPG instead ↵ | Michael Meskes | |
| of given to the backend. | |||
| 2005-11-30 | - Made several variables "const char *" instead of "char *" as proposed by ↵ | Michael Meskes | |
| Qingqing Zhou <zhouqq@cs.toronto.edu>. - Replaced all strdup() calls by ECPGstrdup(). - Set ecpg library version to 5.2. - Set ecpg version to 4.2.1. | |||
| 2005-11-27 | Add missing semicolon. Recent versions of bison seem to choke on this, | Tom Lane | |
| per buildfarm report from platypus, even though older versions let it pass. | |||
| 2005-10-15 | Standard pgindent run for 8.1. | Bruce Momjian | |
| 2005-10-05 | Also synced the ecpg lexer with the backend lexer. | Michael Meskes | |
| 2005-10-04 | Somehow I missed some parser changes, so this commit comes pretty late. I ↵ | Michael Meskes | |
| just synced the parser of ecpg against the backend version, but still have to sync the lexer. Also I fixed a bug in a bug fix I committed a few weeks ago. he check for a varchar pointer was incomplete. | |||
| 2005-08-29 | Fix misspelled error message. | Tom Lane | |
| 2005-08-24 | - Check for NULL before checking whether argument is an array. | Michael Meskes | |
| - Remove stary character from string quoting. - Fixed check to report missing varchar pointer implementation. | |||
| 2005-08-22 | Back out incorrect use of E'' escape addition. | Bruce Momjian | |
| 2005-07-02 | Add E'' to internally created SQL strings that contain backslashes. | Bruce Momjian | |
| Improve code clarity by using macros for E'' processing. | |||
| 2005-06-16 | Add \x hex support to ecpg strings. This just passes them to the backend. | Bruce Momjian | |
| 2005-03-14 | Bump minor version numbers for 8.1 compared to 8.0. | Bruce Momjian | |
| 2005-03-11 | Add fprintf() custom version to libpgport. | Bruce Momjian | |
| Document use of macros for pg_printf functions. Bump major versions of all interfaces to handle movement of get_progname from libpq to libpgport in 8.0, and probably other libpgport changes in 8.1. | |||
| 2005-02-10 | Fixed more parsing bugs in other CREATE statements as pointed out by TANIDA | Michael Meskes | |
| Yutaka <tanida@sra.co.jp>. | |||
| 2005-02-09 | Fixed bug in parsing of CREATE AS statement. | Michael Meskes | |
| 2005-02-02 | Fixed bug in parsing of #line statement in declare section. | Michael Meskes | |
| 2005-01-25 | Fixed segfault due to freeing a struct definition twice if it was a named ↵ | Michael Meskes | |
| struct used in a typedef. | |||
| 2005-01-18 | Update version stamps for 8.1 as listed in RELEASE_CHANGES. | Bruce Momjian | |
| 2005-01-10 | Fixed segfault in adjust_informix due to missing varchar type. | Michael Meskes | |
| 2005-01-01 | Some more missed copyright notices. Many of these look like they | Tom Lane | |
| should have been caught by the src/tools/copyright script ... why weren't they? | |||
| 2004-12-31 | Tag appropriate files for rc3 | PostgreSQL Daemon | |
| Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ... | |||
| 2004-12-23 | Added PGTYPEStimestamp_add_interval written by Dave Cramer. | Michael Meskes | |
| Fixed parsing of defines to make sure they used more than once. | |||
| 2004-12-06 | Fixed bug in parsing of typedef'ed array sizes. | Michael Meskes | |
| Synced parser. | |||
| 2004-11-10 | List VALUE as a keyword. | Michael Meskes | |
| 2004-11-09 | Get rid of perror(), substitute some better phrased error messages. | Peter Eisentraut | |
| malloc() doesn't set errno, so most uses were buggy anyway. | |||
| 2004-11-05 | Create 'default_tablespace' GUC variable that supplies a TABLESPACE | Tom Lane | |
| clause implicitly whenever one is not given explicitly. Remove concept of a schema having an associated tablespace, and simplify the rules for selecting a default tablespace for a table or index. It's now just (a) explicit TABLESPACE clause; (b) default_tablespace if that's not an empty string; (c) database's default. This will allow pg_dump to use SET commands instead of tablespace clauses to determine object locations (but I didn't actually make it do so). All per recent discussions. | |||
| 2004-11-01 | fixed bug in segfault REVOKE statement | Dave Cramer | |
| 2004-10-18 | Synced parser | Michael Meskes | |
| 2004-10-13 | More minor cosmetic improvements: | Neil Conway | |
| - remove another senseless "extern" keyword that was applied to a function definition - change a foo more function signatures from "some_type foo()" to "some_type foo(void)" - rewrite another K&R style function definition - make the type of the "action" function pointer in the KeyWord struct in src/backend/utils/adt/formatting.c more precise | |||
