We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentebdfac3 commitfa1c31eCopy full SHA for fa1c31e
src/interfaces/ecpg/lib/connect.c
@@ -118,7 +118,7 @@ ECPGnoticeProcessor_raise(int code, const char *message)
118
sqlca.sqlerrm.sqlerrmc[sizeof(sqlca.sqlerrm.sqlerrmc)-1]=0;
119
sqlca.sqlerrm.sqlerrml=strlen(sqlca.sqlerrm.sqlerrmc);
120
121
-// remove trailing newline
+/* remove trailing newline */
122
if (sqlca.sqlerrm.sqlerrml
123
&&sqlca.sqlerrm.sqlerrmc[sqlca.sqlerrm.sqlerrml-1]=='\n')
124
{
@@ -201,7 +201,7 @@ ECPGnoticeProcessor(void *arg, const char *message)
201
return;
202
203
/* NOTICE: QUERY PLAN: */
204
-if (!strncmp(message,"QUERY PLAN:",11))// do we really see these?
+if (!strncmp(message,"QUERY PLAN:",11))/* do we really see these? */
205
206
207
/* NOTICE: DROP TABLE implicitly drops referential integrity trigger from table "*" */