mirror of
https://github.com/postgres/postgres.git
synced 2026-07-15 20:52:53 -04:00
Change // to /*.
This commit is contained in:
parent
ebdfac3bb1
commit
fa1c31eab6
1 changed files with 2 additions and 2 deletions
|
|
@ -118,7 +118,7 @@ ECPGnoticeProcessor_raise(int code, const char *message)
|
|||
sqlca.sqlerrm.sqlerrmc[sizeof(sqlca.sqlerrm.sqlerrmc)-1]=0;
|
||||
sqlca.sqlerrm.sqlerrml = strlen(sqlca.sqlerrm.sqlerrmc);
|
||||
|
||||
// remove trailing newline
|
||||
/* remove trailing newline */
|
||||
if (sqlca.sqlerrm.sqlerrml
|
||||
&& sqlca.sqlerrm.sqlerrmc[sqlca.sqlerrm.sqlerrml-1]=='\n')
|
||||
{
|
||||
|
|
@ -201,7 +201,7 @@ ECPGnoticeProcessor(void *arg, const char *message)
|
|||
return;
|
||||
|
||||
/* NOTICE: QUERY PLAN: */
|
||||
if (!strncmp(message,"QUERY PLAN:",11)) // do we really see these?
|
||||
if (!strncmp(message,"QUERY PLAN:",11)) /* do we really see these? */
|
||||
return;
|
||||
|
||||
/* NOTICE: DROP TABLE implicitly drops referential integrity trigger from table "*" */
|
||||
|
|
|
|||
Loading…
Reference in a new issue