Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Fix SQL3 type return value. | Michael Meskes | 2010-01-13 | |
| | | | | | | For non-SQL3 types ecpg used to return -Oid. This will break if there are enough Oids to fill the namespace. Therefore we play it safe and return 0 if there is no Oid->SQL3 tyoe mapping available. | |||
* | Remove __FUNCTION__ keyword that is not recognized by som compilers. | Michael Meskes | 2010-01-06 | |
| | ||||
* | Removed test case using nan as float value because printf's output for nan is | Michael Meskes | 2010-01-06 | |
| | | | | | OS specific with some distinguishing between signaling and quiet nans. It's not really importnat for us here anyway. | |||
* | Removed more inttypes.h stuff. | Michael Meskes | 2010-01-06 | |
| | ||||
* | Applied Zoltan's patch to remove hardware dependant offset logging and | Michael Meskes | 2010-01-06 | |
| | | | | superfluous include files. | |||
* | And another one | Michael Meskes | 2010-01-05 | |
| | ||||
* | And another one of the same problem. | Michael Meskes | 2010-01-05 | |
| | ||||
* | And then forgot to commit the fixed files. ARGH! | Michael Meskes | 2010-01-05 | |
| | ||||
* | Ah, should read the file completely. I got so used to git that I almost ↵ | Michael Meskes | 2010-01-05 | |
| | | | | forgot about the cvs stuff. | |||
* | Thrid try. It seems my two checkouts need some cleaning up. | Michael Meskes | 2010-01-05 | |
| | ||||
* | Still not correct. | Michael Meskes | 2010-01-05 | |
| | ||||
* | Adjusted CVS headers. | Michael Meskes | 2010-01-05 | |
| | ||||
* | Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add sqlda support to | Michael Meskes | 2010-01-05 | |
| | | | | ecpg in both native and compatiblity mode. | |||
* | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 | |
| | ||||
* | Update ecpg regression tests to plpgsql installed by default. | Alvaro Herrera | 2009-12-19 | |
| | ||||
* | Reverting accidently commited changes. | Michael Meskes | 2009-12-17 | |
| | ||||
* | Fixed auto-prepare to not try preparing statements that are not preparable. Bug | Michael Meskes | 2009-12-16 | |
| | | | | | found and solved by Boszormenyi Zoltan <zb@cybertec.at>, some small adjustments by me. | |||
* | Added missing files. | Michael Meskes | 2009-11-26 | |
| | ||||
* | Added dynamic cursor names to ecpg. Almost the whole patch was done by | Michael Meskes | 2009-11-26 | |
| | | | | Boszormenyi Zoltan, with only a minor tweak or two from me. | |||
* | Use diff's -w switch only on Windows, to avoid problems with inconsistent | Tom Lane | 2009-11-23 | |
| | | | | | newline representations. Per buildfarm results and subsequent discussion. Sync up a couple of other places that had their own policies. | |||
* | Support optional FROM/IN in FETCH and MOVE | Alvaro Herrera | 2009-11-11 | |
| | | | | | | | | | | The main motivation for this is that it's required for Informix compatibility in ECPG. This patch makes the ECPG and core grammars a bit closer to one another for these productions. Author: Zoltan Boszormenyi | |||
* | Made sure sqlca is reset for declare cursor in Informix mode as pointed out by | Michael Meskes | 2009-08-14 | |
| | | | | Böszörményi Zoltán <zb@cybertec.at>. | |||
* | Added STRING datatype for Informix compatibility mode. This work is | Michael Meskes | 2009-08-07 | |
| | | | | based on a patch send in by Böszörményi Zoltán <zb@cybertec.at>. | |||
* | Fix an ecpg test, too. Are we there yet? | Tom Lane | 2009-08-04 | |
| | ||||
* | Improve unique-constraint-violation error messages to include the exact | Tom Lane | 2009-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 about | Michael Meskes | 2009-05-20 | |
| | ||||
* | Removed some unneeded variables and comparisons | Michael Meskes | 2009-05-20 | |
| | ||||
* | Fix ecpg tests for change that disallowed Unicode literals unless | Tom Lane | 2009-05-06 | |
| | | | | standard_conforming_strings is on. | |||
* | When changing a regression test file one should also change the expected ↵ | Michael Meskes | 2009-02-02 | |
| | | | | output file. | |||
* | Set memory segment to '0', just to be sure. | Michael Meskes | 2009-02-02 | |
| | ||||
* | Fixed auto allocation for binary data types. | Michael Meskes | 2009-02-02 | |
| | ||||
* | Fixed bug in %s handling. | Michael Meskes | 2009-02-02 | |
| | ||||
* | NLS cleanup in ecpglib | Peter Eisentraut | 2009-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. | |||
* | Build needed things in src/test/regress/ first. And some build rules | Peter Eisentraut | 2009-01-15 | |
| | | | | normalization. | |||
* | Fix for cross-compilation between mingw32 and something else. The choice | Peter Eisentraut | 2009-01-05 | |
| | | | | | of pwd vs. pwd -W is correctly a function of the build system, not the host system. | |||
* | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | |
| | ||||
* | Finally the last test. | Michael Meskes | 2008-12-29 | |
| | ||||
* | First rounf of whitespace changes. Everything but connect-test1 should be fine. | Michael Meskes | 2008-12-29 | |
| | ||||
* | Applied patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> to | Michael Meskes | 2008-12-17 | |
| | | | | fix segfault on non-glibc systems. | |||
* | Removed port testing. | Michael Meskes | 2008-12-01 | |
| | ||||
* | Make sure we give an appropriate user-facing error when attempting | Tom Lane | 2008-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. | |||
* | Partial fix for fallout from temp-port changes. ecpg still needs more work, | Tom Lane | 2008-11-28 | |
| | | | | but I think this is enough to turn the buildfarm green again. | |||
* | Applied patch by Ron Mayer <rm_pg@cheapcomplexdevices.com> to merge the new | Michael Meskes | 2008-11-26 | |
| | | | | interval style into ecpg. | |||
* | Updated parser file to the one generated by the latest version of ↵ | Michael Meskes | 2008-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 Meskes | 2008-11-11 | |
| | | | | Adapted regression test files accordingly. | |||
* | Unicode escapes in strings and identifiers | Peter Eisentraut | 2008-10-29 | |
| | ||||
* | Clean regression.out | Peter Eisentraut | 2008-10-21 | |
| | ||||
* | Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPE | Peter Eisentraut | 2008-10-21 | |
| | | | | alongside our traditional syntax. | |||
* | Fixed parsing of parameters. Added regression test for this. | Michael Meskes | 2008-10-14 | |
| | ||||
* | Sigh, I missed checking the ecpg tests ... | Tom Lane | 2008-09-01 | |
| |