|
21037 | 21037 | "original/alter/alter-97.sql": "ALTER SCHEMA schemaname OWNER TO newowner", |
21038 | 21038 | "misc/quotes_etc-1.sql": "CREATE USER MAPPING FOR local_user SERVER foreign_server OPTIONS (\"user\" 'remote_user', password 'secret123')", |
21039 | 21039 | "misc/quotes_etc-2.sql": "CREATE USER MAPPING FOR local_user SERVER foreign_server OPTIONS (\"user\" 'remote_user', password 'secret123')", |
| 21040 | + "misc/quotes_etc-3.sql": "SELECT 'Line 1\nLine 2'", |
| 21041 | + "misc/quotes_etc-4.sql": "SELECT 'Column\tValue with quote: ''' AS formatted_string", |
| 21042 | + "misc/quotes_etc-5.sql": "SELECT E'Path is C:\\\\Program Files\\\\PostgreSQL\r\nDone.'", |
| 21043 | + "misc/quotes_etc-6.sql": "SELECT 'Unicode heart: ❤' AS unicode_heart", |
| 21044 | + "misc/quotes_etc-7.sql": "SELECT 'Extended Unicode: 🚀' AS rocket_emoji", |
| 21045 | + "misc/quotes_etc-8.sql": "SELECT 'Bell sound: \u0007' AS octal_escape", |
| 21046 | + "misc/quotes_etc-9.sql": "SELECT E'This is not a bytea literal: \\\\xDEAD and a newline \n'", |
| 21047 | + "misc/quotes_etc-10.sql": "SELECT E'\\\\\\\\xDEADBEEF'::bytea", |
| 21048 | + "misc/quotes_etc-11.sql": "INSERT INTO messages (content) VALUES ('Line one.\nLine two with tab:\tEnd.')", |
| 21049 | + "misc/quotes_etc-12.sql": "INSERT INTO logs (message) VALUES ('Escaped comment info: \nAuthor said: ''yes''')", |
| 21050 | + "misc/quotes_etc-13.sql": "SELECT E'Invalid path: C:\\\\Users\\\\Me\\\\Documents'", |
| 21051 | + "misc/quotes_etc-14.sql": "SELECT 'Page break here:\fNext page'", |
| 21052 | + "misc/quotes_etc-15.sql": "INSERT INTO configs (data) VALUES (E'{\"theme\": \"dark\", \"alert\": \"bell\\\\nchime\"}')", |
| 21053 | + "misc/quotes_etc-16.sql": "INSERT INTO docs (note) VALUES ('This value includes a SQL-style comment -- tricky!\nBut it''s safe here.')", |
| 21054 | + "misc/quotes_etc-17.sql": "SELECT 'Just a plain string, nothing to escape.'", |
| 21055 | + "misc/quotes_etc-18.sql": "SELECT 'Just a plain string, nothing to escape.'", |
| 21056 | + "misc/quotes_etc-19.sql": "SELECT E'This string has \"quotes\" and \\\\slashes\\\\' AS tricky_string", |
| 21057 | + "misc/quotes_etc-20.sql": "SELECT E'String with null byte: \\\\0 after this' AS null_char", |
| 21058 | + "misc/quotes_etc-21.sql": "SELECT E'This ends in backslash: \\\\' AS trailing_backslash", |
| 21059 | + "misc/quotes_etc-22.sql": "SELECT E'Config path: C:\\\\\\\\Temp\\\\\\\\Files\\\\' AS double_slash", |
| 21060 | + "misc/quotes_etc-23.sql": "SELECT 'First line\nSecond line\nThird line' AS multiline_string", |
| 21061 | + "misc/quotes_etc-24.sql": "WITH msg AS (SELECT 'CTE with newline\nand tab\tinside' AS txt) SELECT * FROM msg", |
| 21062 | + "misc/quotes_etc-25.sql": "SELECT 'Some string' AS \"select\"", |
| 21063 | + "misc/quotes_etc-26.sql": "SELECT E'Escapes: \\\\ \b \f \n \r \t \u000b ''' AS all_escapes", |
| 21064 | + "misc/quotes_etc-27.sql": "CREATE FUNCTION escape_example() RETURNS text AS $$\nBEGIN\n RETURN E'This has a newline\\\\nand tab\\\\twith quotes: \\\\'hello\\\\'';\nEND;\n$$ LANGUAGE plpgsql", |
| 21065 | + "misc/quotes_etc-28.sql": "DO $$\nBEGIN\n RAISE NOTICE 'Line one\\nLine two';\nEND;\n$$ LANGUAGE plpgsql", |
| 21066 | + "misc/quotes_etc-29.sql": "CREATE USER MAPPING FOR local_user SERVER foreign_server OPTIONS (\"user\" 'remote_user', password 'secret123')", |
| 21067 | + "misc/quotes_etc-30.sql": "CREATE USER MAPPING FOR local_user SERVER foreign_server OPTIONS (\"user\" 'remote_user', password 'secret123')", |
21040 | 21068 | "misc/launchql-ext-types-1.sql": "CREATE DOMAIN attachment AS jsonb CHECK (value ?& ARRAY['url', 'mime'] AND (value ->> 'url') ~ E'^(https?)://[^\\\\s/$.?#].[^\\\\s]*$')", |
21041 | 21069 | "misc/launchql-ext-types-2.sql": "COMMENT ON DOMAIN attachment IS '@name launchqlInternalTypeAttachment'", |
21042 | 21070 | "misc/launchql-ext-types-3.sql": "CREATE DOMAIN email AS citext CHECK (value ~ E'^[a-zA-Z0-9.!#$%&''*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$')", |
|
0 commit comments