#include "extern.h"
+static void ouput_escaped_str(char *cmd);
+
void
output_line_number(void)
{
}
void
-output_simple_statement(char *cmd)
+output_simple_statement(char *stmt)
{
- int i,
- j = strlen(cmd);;
-
- /* output this char by char as we have to filter '\"' */
- for (i = 0; i < j; i++)
- {
- if (cmd[i] != '"')
- fputc(cmd[i], yyout);
- else
- fputs("\\\"", yyout);
- }
+ ouput_escaped_str(stmt);
output_line_number();
- free(cmd);
+ free(stmt);
}
/*
void
output_statement(char *stmt, int mode, char *con)
{
- int i,
- j = strlen(stmt);
-
fprintf(yyout, "{ ECPGdo(__LINE__, %d, %d, %s, \"", compat, force_indicator, con ? con : "NULL");
-
- /* output this char by char as we have to filter '\"' */
- for (i = 0; i < j; i++)
- {
- if (stmt[i] != '"')
- fputc(stmt[i], yyout);
- else
- fputs("\\\"", yyout);
- }
-
+ ouput_escaped_str(stmt);
fputs("\", ", yyout);
/* dump variables to C file */
if (connection != NULL)
free(connection);
}
+
+
+static void
+ouput_escaped_str(char *str)
+{
+ int i, len = strlen(str);
+
+ /* output this char by char as we have to filter " and \n */
+ for (i = 0; i < len; i++)
+ {
+ if (str[i] == '"')
+ fputs("\\\"", yyout);
+ else if (str[i] == '\n')
+ fputs("\\n\\\n", yyout);
+ else
+ fputc(str[i], yyout);
+ }
+}
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.140 2006/02/02 03:51:41 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.141 2006/02/04 02:32:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
dolq_cont [A-Za-z\200-\377_0-9]
dolqdelim \$({dolq_start}{dolq_cont}*)?\$
dolqfailed \${dolq_start}{dolq_cont}*
-dolqinside [^$]+
+dolqinside [^$']+
/* Double quote
* Allows embedded spaces and other special characters into identifiers.
<xdolq>{dolqinside} { addlit(yytext, yyleng); }
<xdolq>{dolqfailed} { addlit(yytext, yyleng); }
<xdolq>. {
- /* This is only needed for $ inside the quoted text */
+ /* $$ is implemented as a single-quoted string, so double it? */
+ if (yytext[0] == '\'')
+ addlitchar(yytext[0]);
+ /* single quote or dollar sign */
addlitchar(yytext[0]);
}
<xdolq><<EOF>> { yyerror("unterminated dollar-quoted string"); }