You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/PostgreSQL/Message/PostgreSQLMessage.swift
+10
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,25 @@ enum PostgreSQLMessage {
7
7
case error(PostgreSQLDiagnosticResponse)
8
8
/// Identifies the message as a notice.
9
9
case notice(PostgreSQLDiagnosticResponse)
10
+
/// One of the various authentication request message formats.
10
11
case authenticationRequest(PostgreSQLAuthenticationRequest)
12
+
/// Identifies the message as a password response.
13
+
case password(PostgreSQLPasswordMessage)
14
+
/// Identifies the message as a run-time parameter status report.
11
15
case parameterStatus(PostgreSQLParameterStatus)
16
+
/// Identifies the message as cancellation key data. The frontend must save these values if it wishes to be able to issue CancelRequest messages later.
12
17
case backendKeyData(PostgreSQLBackendKeyData)
18
+
/// Identifies the message type. ReadyForQuery is sent whenever the backend is ready for a new query cycle.
13
19
case readyForQuery(PostgreSQLReadyForQuery)
20
+
/// Identifies the message as a simple query.
14
21
case query(PostgreSQLQuery)
22
+
/// Identifies the message as a row description.
15
23
case rowDescription(PostgreSQLRowDescription)
24
+
/// Identifies the message as a data row.
16
25
case dataRow(PostgreSQLDataRow)
17
26
/// Identifies the message as a command-completed response.
18
27
case close(PostgreSQLCloseResponse)
28
+
/// Identifies the message as a Parse command.
19
29
case parse(PostgreSQLParseRequest)
20
30
/// Identifies the message as a parameter description.
21
31
case parameterDescription(PostgreSQLParameterDescription)
0 commit comments