Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Fixed incorrect argument handling in SET command if argument is a variable. | Michael Meskes | 2008-08-19 | |
| | ||||
* | Synced parser. | Michael Meskes | 2008-05-20 | |
| | | | | | Made ecpg parser use backend provided keyword list. Changed whenever test so exit value is 0. | |||
* | fix ecpg regression tests broken by over-eager adding of $PostgreSQL$ markers | Andrew Dunstan | 2008-05-17 | |
| | ||||
* | Add $PostgreSQL$ markers to a lot of files that were missing them. | Andrew Dunstan | 2008-05-17 | |
| | | | | | | | | | | This particular batch was just for *.c and *.h file. The changes were made with the following 2 commands: find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *' find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */' | |||
* | Add localization support to ecpg. | Peter Eisentraut | 2008-05-16 | |
| | | | | Author: Euler Taveira de Oliveira <euler@timbira.com> | |||
* | Sorry, copied wrong files. | Michael Meskes | 2008-03-27 | |
| | ||||
* | - Moved from PQsetdbLogin to PQconnectDB. | Michael Meskes | 2008-03-27 | |
| | | | | | - Correctly parse connect options. - Changed regression tests accordingly. | |||
* | More README src cleanups. | Bruce Momjian | 2008-03-21 | |
| | ||||
* | Added ECPGget_PGconn() function to ecpglib, courtesy of Mike Aubury. | Michael Meskes | 2008-03-20 | |
| | | | | Removed one include file from connect-test1. | |||
* | Fixed bug that caused arrays of varchar to be output with incomplete name. | Michael Meskes | 2008-03-02 | |
| | | | | In the process expanded one test case, | |||
* | - Removed duplicate include of ecpgtype.h which meant I had to adapt all ↵ | Michael Meskes | 2008-02-17 | |
| | | | | | | expected results. - Changed INFORMIX mode symbol definition yet again because the old way didn't work on NetBSD. Hopefully this one does. | |||
* | - EXECUTE can return NOT FOUND so it should be checked here too. | Michael Meskes | 2008-02-14 | |
| | | | | - Changed regression test accordingly. | |||
* | Re-enabled variables in fetch/move command. | Michael Meskes | 2008-01-15 | |
| | ||||
* | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | |
| | ||||
* | Sorry, hit the wrong button with my last commit. Here's the correct changelog: | Michael Meskes | 2007-12-28 | |
| | | | | | Applied patch send by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> to fix bug in connect statement if user name is a variable. Also fixed test case that didn't detect this. | |||
* | *** empty log message *** | Michael Meskes | 2007-12-28 | |
| | ||||
* | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | |
| | ||||
* | Tweak recently-added tests to suppress scary-looking warnings on 64-bit | Tom Lane | 2007-10-03 | |
| | | | | | | machines about casts between pointers and integers of different sizes. While they're harmless, we shouldn't expect users to have to go through and figure that out for themselves. | |||
* | Make ECPG regression tests run with -c only for array_of_struct.pgc | Magnus Hagander | 2007-10-03 | |
| | | | | | | | on MSVC. Fix strange nonstandard version of __stdcall specifyer in thread tests on win32. | |||
* | Cleaned up ecpglib and renamed functions that do not need to be exported. | Michael Meskes | 2007-10-03 | |
| | | | | Created export list for ecpglib. | |||
* | Hopefully fixed some stuff that causes Windows builds to fail. | Michael Meskes | 2007-10-03 | |
| | ||||
* | Made new test also work without threading enabled. | Michael Meskes | 2007-10-02 | |
| | ||||
* | No idea where this file came from. | Michael Meskes | 2007-10-02 | |
| | ||||
* | ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> added thread-safe | Michael Meskes | 2007-10-02 | |
| | | | | descriptor handling | |||
* | In hopes of un-breaking the buildfarm, add missing file from | Tom Lane | 2007-09-30 | |
| | | | | ITAGAKI Takahiro's patch. | |||
* | Applied another patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> | Michael Meskes | 2007-09-30 | |
| | | | | to get memory allocation thread-safe. He also did some cleaning up. | |||
* | Applied patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> to get ↵ | Michael Meskes | 2007-09-26 | |
| | | | | prepare thread-safe. | |||
* | Synced parser and keyword list. | Michael Meskes | 2007-09-04 | |
| | ||||
* | unbreak ECPG tests for VPATH builds. | Andrew Dunstan | 2007-08-23 | |
| | ||||
* | It seems we simply expected the same output for failure and success. | Michael Meskes | 2007-08-14 | |
| | ||||
* | It seems I always forget .in files. | Michael Meskes | 2007-08-14 | |
| | ||||
* | Fixed compiler warning for enum handling | Michael Meskes | 2007-08-14 | |
| | ||||
* | As usual I forgot some files. :-) | Michael Meskes | 2007-08-14 | |
| | ||||
* | - Finished major rewrite to use new protocol version | Michael Meskes | 2007-08-14 | |
| | | | | | | | | - Really prepare statements - Added more regression tests - Added auto-prepare mode - Use '$n' for positional variables, '?' is still possible via ecpg option - Cleaned up the sources a little bit | |||
* | Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with | Magnus Hagander | 2007-07-25 | |
| | | | | third party includes (like tcl) that define DLLIMPORT. | |||
* | Applied patch by Joachim to enable checktcp again | Michael Meskes | 2007-06-15 | |
| | ||||
* | Add resultmap entries for mingw - same as for msvc | Magnus Hagander | 2007-06-14 | |
| | ||||
* | Properly identify mingw as a win32 platform needing different diff | Magnus Hagander | 2007-06-14 | |
| | | | | options to deal with strange line endings. | |||
* | VPATH fixes. | Alvaro Herrera | 2007-06-12 | |
| | ||||
* | Fix search/replace error in makefile for ecpg tests | Magnus Hagander | 2007-06-12 | |
| | ||||
* | Rewrite ECPG regression test driver in C, by splitting the standard | Magnus Hagander | 2007-06-12 | |
| | | | | | | | | | regression driver into two parts and reusing half of it. Required to run ECPG tests without a shell on MSVC builds. Fix ECPG thread tests for MSVC build (incl output files). Joachim Wieland and Magnus Hagander | |||
* | Update expected files for textual changes | Peter Eisentraut | 2007-06-04 | |
| | ||||
* | Sorry guys, I committed the file from my development snapshot instead the ↵ | Michael Meskes | 2007-05-27 | |
| | | | | one from HEAD. Fixing it now. | |||
* | The source code changed, so the expected file changed too. | Michael Meskes | 2007-05-27 | |
| | ||||
* | Applied Joachim's patch for ecpg_config.h creation on Vista. | Michael Meskes | 2007-05-27 | |
| | | | | Changed variable test to not run into infinite loops on backend errors. | |||
* | - Synced parser and keyword list | Michael Meskes | 2007-05-10 | |
| | | | | - Renamed update test so it hopefully runs on Vista | |||
* | Make ECPG regression tests use native threading instead of pthreads, now that | Magnus Hagander | 2007-03-29 | |
| | | | | | | | ecpglib supports it. Change configure (patch from Bruce) and msvc build system to no longer require pthreads on win32, since all parts of postgresql can be thread-safe using the native platform functions. | |||
* | - Added patch by Magnus Hagander <magnus@hagander.net> to use native | Michael Meskes | 2007-03-29 | |
| | | | | | win32 threads. - Fixed regression tests to run threading tests. | |||
* | - Changed some whitespacing in connect statement. | Michael Meskes | 2007-03-17 | |
| | | | | | | | - Made some chars const as proposed by Stefan Huehner <stefan@huehner.org>. - Synced parser and keyword lists. - Copied two token parsing from backend parser to ecpg parser. - Also added a test case for this. | |||
* | Replace useless uses of := by = in makefiles. | Peter Eisentraut | 2007-02-09 | |
| |