8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7e1b38 commit 4a68d50Copy full SHA for 4a68d50
src/backend/tcop/postgres.c
@@ -310,7 +310,7 @@ InteractiveBackend(StringInfo inBuf)
310
printf("statement: %s\n", inBuf->data);
311
fflush(stdout);
312
313
- return 'Q';
+ return PqMsg_Query;
314
}
315
316
/*
@@ -4897,9 +4897,9 @@ PostgresMain(const char *dbname, const char *username)
4897
break;
4898
4899
4900
- * 'X' means that the frontend is closing down the socket. EOF
4901
- * means unexpected loss of frontend connection. Either way,
4902
- * perform normal shutdown.
+ * PqMsg_Terminate means that the frontend is closing down the
+ * socket. EOF means unexpected loss of frontend connection.
+ * Either way, perform normal shutdown.
4903
*/
4904
case EOF:
4905
0 commit comments