Commit 7adbd766 authored by Peter Eisentraut's avatar Peter Eisentraut

Message fix

parent 3ca7eddb
#!/usr/bin/perl #!/usr/bin/perl
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/parse.pl,v 1.2 2009/01/01 17:24:02 momjian Exp $ # $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/parse.pl,v 1.3 2009/01/29 09:38:38 petere Exp $
# parser generater for ecpg # parser generater for ecpg
# call with backend parser as stdin # call with backend parser as stdin
# #
...@@ -371,7 +371,7 @@ sub dump_fields { ...@@ -371,7 +371,7 @@ sub dump_fields {
# filter out ExecuteStmt: CREATE OptTemp TABLE ... # filter out ExecuteStmt: CREATE OptTemp TABLE ...
# because the warning there is only valid in some situations # because the warning there is only valid in some situations
if ($flds{0} ne 'create' || $flds{2} ne 'table') { if ($flds{0} ne 'create' || $flds{2} ne 'table') {
&add_to_buffer('rules', "mmerror(PARSE_ERROR, ET_WARNING, \"unsupported feature will be passed to backend\\n\");"); &add_to_buffer('rules', "mmerror(PARSE_ERROR, ET_WARNING, \"unsupported feature will be passed to server\");");
} }
$feature_not_supported = 0; $feature_not_supported = 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment