|
1 | 1 | #!/usr/bin/perl
|
2 |
| -# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/parse.pl,v 1.2 2009/01/01 17:24:02 momjian Exp $ |
| 2 | +# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/parse.pl,v 1.3 2009/01/29 09:38:38 petere Exp $ |
3 | 3 | # parser generater for ecpg
|
4 | 4 | # call with backend parser as stdin
|
5 | 5 | #
|
@@ -371,7 +371,7 @@ sub dump_fields {
|
371 | 371 | # filter out ExecuteStmt: CREATE OptTemp TABLE ...
|
372 | 372 | # because the warning there is only valid in some situations
|
373 | 373 | if ($flds{0}ne'create' ||$flds{2}ne'table') {
|
374 |
| -&add_to_buffer('rules',"mmerror(PARSE_ERROR, ET_WARNING,\"unsupported feature will be passed tobackend\\n\");"); |
| 374 | +&add_to_buffer('rules',"mmerror(PARSE_ERROR, ET_WARNING,\"unsupported feature will be passed toserver\");"); |
375 | 375 | }
|
376 | 376 | $feature_not_supported = 0;
|
377 | 377 | }
|
|