Escaping single quotes with backslash seems not to work

Поиск
Список
Период
Сортировка
От Ron Johnson
Тема Escaping single quotes with backslash seems not to work
Дата
Msg-id CANzqJaD0=V+Dh+mLLfLj4ECLHriAH122LiYaqKyAnWCAKCfa6A@mail.gmail.com
обсуждение исходный текст
Ответы Re: Escaping single quotes with backslash seems not to work
Список pgsql-general
PG 9.6 and PG 14

[quote]
Any other character following a backslash is taken literally. Thus, to include a backslash character, write two backslashes (\\). Also, a single quote can be included in an escape string by writing \', in addition to the normal way of ''.
[/quote]

But it doesn't seem to work.  Obviously there's some misconfiguration or , but I don't see what I did wrong.

TAP=# insert into foo (name, description) values ('XYZ_Name ', '''XYZ ''');
INSERT 0 1

TAP=# insert into foo (name, description) values ('XYZ_Name ', '\'XYZ ');
TAP'#
TAP'# ');
ERROR:  syntax error at or near "XYZ"
LINE 1: ...into foo (name, description) values ('XYZ_Name ', '\'XYZ ');

TAP=# show standard_conforming_strings;
 standard_conforming_strings
-----------------------------
 on
(1 row)

TAP=#
TAP=# show backslash_quote;
 backslash_quote
-----------------
 safe_encoding
(1 row)


В списке pgsql-general по дате отправления:

Предыдущее
От: Torsten Förtsch
Дата:
Сообщение: Vacuum backend with backend_xmin?
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: Escaping single quotes with backslash seems not to work