File: crlf.sql

package info (click to toggle)
postgresql-plsh 1.20220917-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: ansic: 568; sql: 136; makefile: 29; sh: 1
file content (5 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (6)
1
2
3
4
5
-- CR/LF test
CREATE FUNCTION crlf_test() RETURNS text LANGUAGE plsh
AS E'\r\n#!/bin/sh\r\necho OK\r\n';

SELECT crlf_test();