8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2cce84 commit 33294d5Copy full SHA for 33294d5
src/bin/psql/psqlscan.l
@@ -33,7 +33,7 @@
33
* Portions Copyright (c) 1994, Regents of the University of California
34
*
35
* IDENTIFICATION
36
- * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.11 2005/05/30 14:50:35 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.12 2005/05/30 16:48:47 momjian Exp $
37
38
*-------------------------------------------------------------------------
39
*/
@@ -849,7 +849,7 @@ other .
849
"\\r" { appendPQExpBufferChar(output_buf, '\r'); }
850
"\\f" { appendPQExpBufferChar(output_buf, '\f'); }
851
852
-"\\"[0-7]{1,3} {
+{xqoctesc} {
853
/* octal case */
854
appendPQExpBufferChar(output_buf,
855
(char) strtol(yytext + 1, NULL, 8));
0 commit comments