aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/expected
Commit message (Collapse)AuthorAge
...
* Improve unique-constraint-violation error messages to include the exactTom Lane2009-08-01
| | | | | | | | | values being complained of. In passing, also remove the arbitrary length limitation in the similar error detail message for foreign key violations. Itagaki Takahiro
* More variables gcc moans aboutMichael Meskes2009-05-20
|
* Removed some unneeded variables and comparisonsMichael Meskes2009-05-20
|
* Fix ecpg tests for change that disallowed Unicode literals unlessTom Lane2009-05-06
| | | | standard_conforming_strings is on.
* When changing a regression test file one should also change the expected ↵Michael Meskes2009-02-02
| | | | output file.
* Fixed auto allocation for binary data types.Michael Meskes2009-02-02
|
* Fixed bug in %s handling.Michael Meskes2009-02-02
|
* NLS cleanup in ecpglibPeter Eisentraut2009-01-15
| | | | | | | | | | | | | | | | | Replace leftover instances of _() by ecpg_gettext(), the latter being the correct way to refer to the library's message catalog, instead of the one of the program using the library. Drop NLS support for ecpg_log(), which is a debugging instrument similar to elog() in the backend. We cannot support NLS in the ecpg compatlib, because that requires ecpg_gettext, which is in ecpglib, which is not a dependency of compatlib. It doesn't seem worthwhile to worry about this, since the only translatable string is "out of memory", and gettext probably won't be able to do much without memory either. Adjust messages to project style.
* Finally the last test.Michael Meskes2008-12-29
|
* First rounf of whitespace changes. Everything but connect-test1 should be fine.Michael Meskes2008-12-29
|
* Applied patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> toMichael Meskes2008-12-17
| | | | fix segfault on non-glibc systems.
* Removed port testing.Michael Meskes2008-12-01
|
* Make sure we give an appropriate user-facing error when attemptingTom Lane2008-11-29
| | | | | to drop a table that is referenced by an open cursor. Fix unstable ecpg regression test result that was produced by this oversight.
* Applied patch by Ron Mayer <rm_pg@cheapcomplexdevices.com> to merge the newMichael Meskes2008-11-26
| | | | interval style into ecpg.
* Updated parser file to the one generated by the latest version of ↵Michael Meskes2008-11-13
| | | | | | parse.[awk|pl] from the latest version of gram.y Some small corrections to test suite.
* Replaced manually synced preproc.y by the one created by the new script.Michael Meskes2008-11-11
| | | | Adapted regression test files accordingly.
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-29
|
* Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPEPeter Eisentraut2008-10-21
| | | | alongside our traditional syntax.
* Fixed parsing of parameters. Added regression test for this.Michael Meskes2008-10-14
|
* Sigh, I missed checking the ecpg tests ...Tom Lane2008-09-01
|
* 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.
* 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.
* 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
|
* 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
|
* 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
* 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
|
* 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
|
* 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