Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-02-10 | Repair missing inclusions of -lintl for shared libraries. | Tom Lane | |
2004-01-28 | - Issue a warning if a cursor is declared but not opened. | Michael Meskes | |
- Fixed prototype for ECPGprepared_statement to not moan about "const char" - Fixed parsing of nested structures. - Added option to parse header files. | |||
2004-01-07 | More janitorial work: remove the explicit casting of NULL literals to a | Neil Conway | |
pointer type when it is not necessary to do so. For future reference, casting NULL to a pointer type is only necessary when (a) invoking a function AND either (b) the function has no prototype OR (c) the function is a varargs function. | |||
2003-12-03 | Added patch by Dave Cramer for array handling in ecpglib. | Michael Meskes | |
2003-11-30 | Bump all version numbers and version stamps mentioned in RELEASE_CHANGES. | Bruce Momjian | |
2003-11-29 | make sure the $Id tags are converted to $PostgreSQL as well ... | PostgreSQL Daemon | |
2003-11-29 | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | |
2003-11-24 | Rename USE_THREADS to ENABLE_THREAD_SAFETY to avoid name clash with Perl. | Peter Eisentraut | |
Fixes compilation failure with --enable-thread-safety --with-perl and Perl 5.6.1. | |||
2003-11-10 | Re-added forgotten cache. | Michael Meskes | |
2003-11-08 | Made sure an internal array is not treated as a user defined one. | Michael Meskes | |
2003-10-28 | Include -lkrb5 when needed for shlibs depending on libpq. Per report | Tom Lane | |
from Johan Henselmans. | |||
2003-10-26 | Fixed bug with indicators when storage for the string is dynamically allocated. | Michael Meskes | |
2003-10-21 | Cope with platforms that offer LONGLONG_MIN in place of the C99-spec | Tom Lane | |
LLONG_MIN. One example is AIX, per report from Andreas. | |||
2003-09-27 | Adjust Darwin build to use the default 'two level namespace' linking | Tom Lane | |
method. Fix a number of places where shared libraries were linked without mentioning all the libraries they depend on; the Darwin and AIX ports are known to require this, and it doesn't seem to hurt any other supported platforms. (Hence, remove code in pl/tcl makefile that tried to avoid mentioning other libs if not needed.) | |||
2003-09-27 | Rename thread compile flag. Move thread test program to tools/thread, | Bruce Momjian | |
and improve tests. | |||
2003-09-20 | - Applied some bug fixing patches by Dave Cramer <dave@fastcrypt.com>. | Michael Meskes | |
- Added protecting defines to include files. | |||
2003-09-19 | Removed superfluous return statement in get_data. | Michael Meskes | |
2003-09-18 | - Accept output variables for FETCH in DECLARE statement. | Michael Meskes | |
- Synced parser. - Allowed C variables to carry the name of prepared statements. - Added Informix handling of datatype converion errors. | |||
2003-09-09 | - Added Dave patch for Informix handling of numeric/int conversion. | Michael Meskes | |
- Changed all new datatypes to lowercase. - Fixed rounding bug in numerical types. | |||
2003-08-25 | Synced parser and fixed a bug in error output to log file. | Michael Meskes | |
2003-08-24 | Add macros for error result fields to libpq. | Peter Eisentraut | |
2003-08-08 | Fix null checking of type decimal datums without indicator in Informix | Peter Eisentraut | |
mode. from Dave Cramer | |||
2003-08-08 | Be a little bit more careful about using sqlstate, in case libpq returned | Peter Eisentraut | |
NULL for it. | |||
2003-08-04 | Update copyrights to 2003. | Bruce Momjian | |
2003-08-04 | pgindent run. | Bruce Momjian | |
2003-08-01 | Use only two-part shared library version numbers, for better portability | Peter Eisentraut | |
and consistency. | |||
2003-08-01 | Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs, | Peter Eisentraut | |
rather than parsing the message. Add some documentation about embedded SQL. | |||
2003-08-01 | - Added some Informix error codes in Informix mode. | Michael Meskes | |
- Added just another pgtypeslib function. | |||
2003-07-25 | Added explicit casts for date/interval/timestamp. | Michael Meskes | |
2003-07-18 | Added more compat stuff ot the parser. | Michael Meskes | |
2003-07-17 | Allow blanks at the end of numerical values. | Michael Meskes | |
2003-07-17 | Fixed some bugs in Informix compat functions. | Michael Meskes | |
2003-07-15 | Started to create different error codes for different backend messages. | Michael Meskes | |
2003-07-14 | - Synced preproc.y with gram.y | Michael Meskes | |
- Init sqlca in ECPGprepare(). - Added CLOSE DATABASE for Informix compatibility. | |||
2003-07-08 | More informix fixes. | Michael Meskes | |
2003-07-08 | Fix segfault in connect in informix mode. | Michael Meskes | |
2003-07-07 | "char *" of course is not the same as "char []". So I had to fix the way ↵ | Michael Meskes | |
ecpg treated the second one. | |||
2003-07-04 | date, interval and timestamp data should be quoted. | Michael Meskes | |
2003-07-04 | Fixed informix behaviour for select without into. | Michael Meskes | |
2003-07-01 | Use ISO dates in pgtypeslib by default. | Michael Meskes | |
Applied patch by Philip Yarra to fix some thread issues. Added a new data type "decimal" which is mostly the same as our "numeric" but uses a fixed length array to store the digits. This is for compatibility with Informix and maybe others. | |||
2003-06-26 | Added just another compatibility level for Informix. | Michael Meskes | |
2003-06-26 | Wrap LONG_LONG_MIN redfinition around HAVE_LONG_LONG_INT_64. | Bruce Momjian | |
2003-06-26 | Fix compile problem for missing LONG_LONG_MIN on BSD/OS. | Bruce Momjian | |
2003-06-25 | Some systems need another header file included. | Michael Meskes | |
2003-06-25 | Implemented Informix special way to treat NULLs, removed warnings, synced. | Michael Meskes | |
2003-06-22 | Added missing terminating '\0' char for data put into char *. | Michael Meskes | |
2003-06-20 | Just another Informix compatibility change. They uses "free" for cursors as ↵ | Michael Meskes | |
wellafter closing them. | |||
2003-06-20 | Sorry, missed a file. | Michael Meskes | |
2003-06-20 | Allow constants in using clauses. | Michael Meskes | |
2003-06-19 | Fixed fetch into char * and added missing prototype for an Informix function. | Michael Meskes | |