summaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpython_function.sql
AgeCommit message (Collapse)Author
2005-05-14Convert the existing regression test scripts for the various optionalTom Lane
PLs to use the standard pg_regress infrastructure. No changes in the tests themselves. Andrew Dunstan
2005-03-24Adjust plpython to convert \r\n and \r to \n in Python scripts,Tom Lane
per recent discussion concluding that this is the Right Thing. Add regression test check for this behavior. Michael Fuhr
2003-06-30Rename plpython to plpythonu, and update documentation to reflect itsTom Lane
now-untrusted status.
2003-06-25> I've worked with the Pl/Python code in the past and will see about removingBruce Momjian
> rexec and making it an untrusted language. Last time I looked, it didn't > look particularly difficult. I've set aside some time next week, so stay > tuned. Attached is a patch that removes all of the RExec code from plpython from the current PostgreSQL CVS. In addition, plpython needs to be changed to an untrusted language in createlang. Please let me know if there are any problems. Kevin Jacobs
2003-03-27It may not be obvious to you, but the plpython regression testsBruce Momjian
include output that vary depending on the python build one is running. Basically, the order of keys in a dictionary is non-deterministic, and that part of the test fails for me regularly. I rewrote the test to work around this problem, and include a patch file with that change and the change to the expected otuput as well. Mike Meyer
2002-08-22Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane
with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ...
2001-11-16plpython security and error handling fixes, fromTom Lane
Kevin Jacobs and Brad McLean.
2001-05-09Add plpython code.Bruce Momjian