diff options
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(); |