1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Remove ESCAPE_PATCH define

This commit is contained in:
Bruce Momjian
1996-11-04 04:05:16 +00:00
parent 7e42f4814d
commit e43dfad289
3 changed files with 2 additions and 9 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/scansup.c,v 1.3 1996/08/27 07:42:29 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/scansup.c,v 1.4 1996/11/04 04:04:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -137,11 +137,7 @@ scanstr(char *s)
}
}
default:
#ifdef ESCAPE_PATCH
newStr[j] = s[i];
#else
elog (WARN, "Bad escape sequence, s[i] = %d", s[i]);
#endif
} /* switch */
} /* s[i] == '\\' */
else