diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-03-24 17:22:44 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-03-24 17:22:44 +0000 |
commit | 35411a878b50b545d2ceaa15c11015d858c83dda (patch) | |
tree | ea728de7f4a08fcac609e9789a2d152d5d315974 /src/pl/plpython/plpython_test.sql | |
parent | 291cd954fbfa48d8db79f22ffa8d596c837f7ee3 (diff) |
Adjust plpython to convert \r\n and \r to \n in Python scripts,
per recent discussion concluding that this is the Right Thing. Add
regression test check for this behavior. Michael Fuhr
Diffstat (limited to 'src/pl/plpython/plpython_test.sql')
-rw-r--r-- | src/pl/plpython/plpython_test.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pl/plpython/plpython_test.sql b/src/pl/plpython/plpython_test.sql index c78b4aa0c7f..17d6b2e7922 100644 --- a/src/pl/plpython/plpython_test.sql +++ b/src/pl/plpython/plpython_test.sql @@ -61,3 +61,10 @@ SELECT join_sequences(sequences) FROM sequences -- error in trigger -- +-- +-- Check Universal Newline Support +-- + +SELECT newline_lf(); +SELECT newline_cr(); +SELECT newline_crlf(); |