| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2005-04-14 | Added patch by Philip Yarra <philip.yarra@internode.on.net> for a bug in ↵ | Michael Meskes | |
| thread support. | |||
| 2005-03-18 | Added patch by Christof Petig <christof@petig-baender.de> to work around gcc ↵ | Michael Meskes | |
| bug on powerpc and amd64. | |||
| 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 changelog entry to list correct bug reporter. | Michael Meskes | |
| 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-26 | Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the | Tom Lane | |
| APPDATA directory on Windows. Magnus Hagander | |||
| 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-11 | interval_out failed to mention 'ago' for negative intervals in SQL and | Tom Lane | |
| GERMAN datestyles. Ancient bug reported by Terry Lee Tucker. | |||
| 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-30 | Fixed segfault in connect when specifying no database name. | Michael Meskes | |
| 2004-12-23 | Add missing ecpg prototype for newly added functions. | Bruce Momjian | |
| 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-20 | Fix up makefile dependencies for pg_config_paths.h. | Tom Lane | |
| 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-14 | Add 'int' cast for getpid() because some Solaris releases return long | Bruce Momjian | |
| for getpid(). | |||
| 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 | |||
| 2004-10-12 | Fix vpath build break, induced by Bruce's recent commit. | Neil Conway | |
| 2004-10-12 | Add some pg_config_path.h dependencies for places that include | Bruce Momjian | |
| pg_config_paths.h outside of /src/port. | |||
| 2004-10-10 | Cosmetic improvements/code cleanup: | Neil Conway | |
| - replace some function signatures of the form "some_type foo()" with "some_type foo(void)" - replace a few instances of a literal 0 being used as a NULL pointer; there are more instances of this in the code, but I just fixed a few - in src/backend/utils/mb/wstrncmp.c, replace K&R style function declarations with ANSI style, remove use of 'register' keyword - remove an "extern" modifier that was applied to a function definition (rather than a declaration) | |||
| 2004-10-09 | Make getpid() use %d consistently for printing. | Bruce Momjian | |
| 2004-10-05 | Add Win32 version info to client binaries. | Bruce Momjian | |
| Magnus Hagander | |||
| 2004-10-05 | '::' is no longer interpreted as a variable in a prepare statement. | Michael Meskes | |
| 2004-10-04 | Make sure no libs use libpgport by removing it from the link line. | Bruce Momjian | |
| 2004-10-04 | Make libpgport be front-end only and make libpgport_srv be a backend | Bruce Momjian | |
| library that uses palloc, ereport, etc. This simplifies the makefiles for client applications. | |||
| 2004-09-27 | Synced parser. | Michael Meskes | |
| Removed Oracle transaction syntax to fix shift/reduce error. | |||
| 2004-09-09 | Fix Cygwin defines to be consistent. | Bruce Momjian | |
| 2004-09-09 | Make TZNAME_GLOBAL for reference to tzname global variable. | Bruce Momjian | |
| 2004-09-08 | Use _timezone global on Cygwin instead of timezone. | Bruce Momjian | |
| 2004-09-06 | Fixed segfault in Informix mode. | Michael Meskes | |
| 2004-09-01 | Back out Cygwin timezone change until we have a more global solution. | Bruce Momjian | |
| 2004-09-01 | Cast _timezone to int from time_t for Cygwin. | Bruce Momjian | |
| 2004-08-30 | Another pgindent run with lib typedefs added. | Bruce Momjian | |
| 2004-08-29 | Pgindent run for 8.0. | Bruce Momjian | |
| 2004-08-29 | Update copyright to 2004. | Bruce Momjian | |
| 2004-08-28 | Add missing semicolon; some bison versions warn of this. | Tom Lane | |
| 2004-08-11 | Fix broken parsing of CREATE TABLE AS (looks like a mis-sync with main | Tom Lane | |
| parser). | |||
| 2004-08-04 | Fix syntax error by adding a space. | Bruce Momjian | |
| 2004-07-26 | SQL defines are only used in SQL space in Informix mode. | Michael Meskes | |
| 2004-07-20 | Synced parser and keyword list. | Michael Meskes | |
| Fixed handling of cyclic defines. | |||
