summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2007-08-10Fix uninitialized-memory bug in plpython proargnames patch. Per bug #3523Tom Lane
2007-07-25Silence compiler warnings on mingwMagnus Hagander
2007-07-25Implement RETURN QUERY for PL/PgSQL. This provides some convenient syntaxNeil Conway
2007-07-20Capitalize language key words in error messagesPeter Eisentraut
2007-07-16Allow plpgsql function parameter names to be qualified with the function'sTom Lane
2007-07-15Because plpgsql's scanner uses %option case-insensitive, flex's results couldTom Lane
2007-07-15Reject zero or negative BY step in plpgsql integer FOR-loops, and behaveTom Lane
2007-07-13Volatile-qualify a dozen variables in plpython.c to eliminate warningsTom Lane
2007-06-28Fix incorrect tests for undef Perl values in some places in plperl.c.Tom Lane
2007-06-26Remove unused "caller" argument from stringToQualifiedNameList.Alvaro Herrera
2007-06-06Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane
2007-06-05Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane
2007-06-01Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backendsTom Lane
2007-05-31Make some messages more consistentPeter Eisentraut
2007-04-29Support for MOVE in PL/PgSQL. Initial patch from Magnus, some improvementsNeil Conway
2007-04-28Add support for IN as alternative to FROM in PL/PgSQL's FETCH statement,Neil Conway
2007-04-19Fix plpgsql to avoid reference to already-freed memory when returning aTom Lane
2007-04-16Support scrollable cursors (ie, 'direction' clause in FETCH) in plpgsql.Tom Lane
2007-04-04Remove plpython casts C source code casts:Bruce Momjian
2007-04-03Allow pl/pythonu >= version 2.3 to return boolean, rather than 1/0.Bruce Momjian
2007-04-03Allow PL/PythonU to compile on Python 2.5. Change needed because of APIBruce Momjian
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-25Remove the prohibition on executing cursor commands through SPI_execute.Tom Lane
2007-03-18Code cleanup for function prototypes: change two K&R-style prototypesNeil Conway
2007-03-15Make use of plancache module for SPI plans. In particular, since plpgsqlTom Lane
2007-02-21Allow pltcl args to spi_prepare and plpython args to plpy.prepare to be stand...Andrew Dunstan
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane
2007-02-19Improve plpgsql's error message when a datatype declaration is omitted.Tom Lane
2007-02-10Put back some not-so-unnecessary-as-all-that := usages. Per buildfarm.Tom Lane
2007-02-09Replace useless uses of := by = in makefiles.Peter Eisentraut
2007-02-09Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane
2007-02-08Fix an ancient logic error in plpgsql's exec_stmt_block: it thought it couldTom Lane
2007-02-08Rearrange use of plpgsql_add_initdatums() so that only the parsing of aTom Lane
2007-02-01Update some of the "expected" regression test results for Bruce'sNeil Conway
2007-02-01Fix plpgsql so that when a local variable has no initial-value expression,Tom Lane
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-01-30Repair oversights in the mechanism used to store compiled plpgsql functions.Tom Lane
2007-01-30Add SPI_push/SPI_pop calls so that datatype input and output functions calledTom Lane
2007-01-28Remove unnecessary checkpoint from PL regression tests. This was onceTom Lane
2007-01-28Fix plpython MSVC build in non-debug mode.Andrew Dunstan
2007-01-28Make some small improvements in the accuracy of plpgsql's error locationTom Lane
2007-01-28Fix up plpgsql's "simple expression" evaluation mechanism so that it behavesTom Lane
2007-01-27remove unnecessary and now inaccurate cast which I should have removed with o...Andrew Dunstan
2007-01-27Allow args to spi_prepare to be standard type aliaes as well as those known i...Andrew Dunstan
2007-01-25Reverse out use of Py_RETURN_TRUE in plpython, only supported in Python >=Bruce Momjian
2007-01-25Fix for plpython functions; return true/false for boolean,Bruce Momjian
2007-01-20Remove remains of old depend target.Peter Eisentraut
2007-01-09Enable another five tuple status bits by using the high bits of theBruce Momjian
2007-01-09pltcl regression test needs to actually create an opclass, not just one opera...Tom Lane