|
1 |
| -/* $PostgreSQL: pgsql/contrib/tsearch2/dict_thesaurus.c,v 1.3 2006/06/0217:55:40 teodor Exp $ */ |
| 1 | +/* $PostgreSQL: pgsql/contrib/tsearch2/dict_thesaurus.c,v 1.4 2006/06/0218:03:06 teodor Exp $ */ |
2 | 2 |
|
3 | 3 | /*
|
4 | 4 | * thesaurus
|
@@ -331,9 +331,9 @@ compileTheLexeme(DictThesaurus *d) {
|
331 | 331 |
|
332 | 332 | if ( !(ptr&&ptr->lexeme) ) {
|
333 | 333 | if ( !ptr )
|
334 |
| -elog(NOTICE,"Thesaurus: word '%s' isn't recognized by subdictionary",d->wrds[i].lexeme); |
| 334 | +elog(ERROR,"Thesaurus: word '%s' isn't recognized by subdictionary",d->wrds[i].lexeme); |
335 | 335 | else
|
336 |
| -elog(ERROR,"Thesaurus: word '%s' is recognized as stop-word, assign any stop-word",d->wrds[i].lexeme); |
| 336 | +elog(NOTICE,"Thesaurus: word '%s' is recognized as stop-word, assign any stop-word",d->wrds[i].lexeme); |
337 | 337 |
|
338 | 338 | newwrds=addCompiledLexeme(newwrds,&nnw,&tnm,NULL,d->wrds[i].entries,0);
|
339 | 339 | }else {
|
|