We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7905aa commit e43537cCopy full SHA for e43537c
src/backend/tcop/postgres.c
@@ -323,7 +323,7 @@ InteractiveBackend(StringInfo inBuf)
323
printf("statement: %s\n", inBuf->data);
324
fflush(stdout);
325
326
- return 'Q';
+ return PqMsg_Query;
327
}
328
329
/*
@@ -4966,9 +4966,9 @@ PostgresMain(const char *dbname, const char *username)
4966
break;
4967
4968
4969
- * 'X' means that the frontend is closing down the socket. EOF
4970
- * means unexpected loss of frontend connection. Either way,
4971
- * 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.
4972
*/
4973
case EOF:
4974
0 commit comments