aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test
Commit message (Collapse)AuthorAge
...
* Fixed incorrect argument handling in SET command if argument is a variable.Michael Meskes2008-08-19
|
* Synced parser.Michael Meskes2008-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$ markersAndrew Dunstan2008-05-17
|
* Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan2008-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 Eisentraut2008-05-16
| | | | Author: Euler Taveira de Oliveira <euler@timbira.com>
* Sorry, copied wrong files.Michael Meskes2008-03-27
|
* - Moved from PQsetdbLogin to PQconnectDB.Michael Meskes2008-03-27
| | | | | - Correctly parse connect options. - Changed regression tests accordingly.
* More README src cleanups.Bruce Momjian2008-03-21
|
* Added ECPGget_PGconn() function to ecpglib, courtesy of Mike Aubury.Michael Meskes2008-03-20
| | | | Removed one include file from connect-test1.
* Fixed bug that caused arrays of varchar to be output with incomplete name.Michael Meskes2008-03-02
| | | | In the process expanded one test case,
* - Removed duplicate include of ecpgtype.h which meant I had to adapt all ↵Michael Meskes2008-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 Meskes2008-02-14
| | | | - Changed regression test accordingly.
* Re-enabled variables in fetch/move command.Michael Meskes2008-01-15
|
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
|
* Sorry, hit the wrong button with my last commit. Here's the correct changelog:Michael Meskes2007-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 Meskes2007-12-28
|
* pgindent run for 8.3.Bruce Momjian2007-11-15
|
* Tweak recently-added tests to suppress scary-looking warnings on 64-bitTom Lane2007-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.pgcMagnus Hagander2007-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 Meskes2007-10-03
| | | | Created export list for ecpglib.
* Hopefully fixed some stuff that causes Windows builds to fail.Michael Meskes2007-10-03
|
* Made new test also work without threading enabled.Michael Meskes2007-10-02
|
* No idea where this file came from.Michael Meskes2007-10-02
|
* ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> added thread-safeMichael Meskes2007-10-02
| | | | descriptor handling
* In hopes of un-breaking the buildfarm, add missing file fromTom Lane2007-09-30
| | | | ITAGAKI Takahiro's patch.
* Applied another patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp>Michael Meskes2007-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 Meskes2007-09-26
| | | | prepare thread-safe.
* Synced parser and keyword list.Michael Meskes2007-09-04
|
* unbreak ECPG tests for VPATH builds.Andrew Dunstan2007-08-23
|
* It seems we simply expected the same output for failure and success.Michael Meskes2007-08-14
|
* It seems I always forget .in files.Michael Meskes2007-08-14
|
* Fixed compiler warning for enum handlingMichael Meskes2007-08-14
|
* As usual I forgot some files. :-)Michael Meskes2007-08-14
|
* - Finished major rewrite to use new protocol versionMichael Meskes2007-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 withMagnus Hagander2007-07-25
| | | | third party includes (like tcl) that define DLLIMPORT.
* Applied patch by Joachim to enable checktcp againMichael Meskes2007-06-15
|
* Add resultmap entries for mingw - same as for msvcMagnus Hagander2007-06-14
|
* Properly identify mingw as a win32 platform needing different diffMagnus Hagander2007-06-14
| | | | options to deal with strange line endings.
* VPATH fixes.Alvaro Herrera2007-06-12
|
* Fix search/replace error in makefile for ecpg testsMagnus Hagander2007-06-12
|
* Rewrite ECPG regression test driver in C, by splitting the standardMagnus Hagander2007-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 changesPeter Eisentraut2007-06-04
|
* Sorry guys, I committed the file from my development snapshot instead the ↵Michael Meskes2007-05-27
| | | | one from HEAD. Fixing it now.
* The source code changed, so the expected file changed too.Michael Meskes2007-05-27
|
* Applied Joachim's patch for ecpg_config.h creation on Vista.Michael Meskes2007-05-27
| | | | Changed variable test to not run into infinite loops on backend errors.
* - Synced parser and keyword listMichael Meskes2007-05-10
| | | | - Renamed update test so it hopefully runs on Vista
* Make ECPG regression tests use native threading instead of pthreads, now thatMagnus Hagander2007-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 nativeMichael Meskes2007-03-29
| | | | | win32 threads. - Fixed regression tests to run threading tests.
* - Changed some whitespacing in connect statement.Michael Meskes2007-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 Eisentraut2007-02-09
|