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
Handler for CopyOutResponse message received via Amazon Redshift wire protocol, represented by b'H' code.
1170
-
1171
-
CopyOutResponse (B)
1172
-
Byte1('H')
1173
-
Identifies the message as a Start Copy Out response. This message will be followed by copy-out data.
1174
-
1175
-
Int32
1176
-
Length of message contents in bytes, including self.
1177
-
1178
-
Int8
1179
-
0 indicates the overall COPY format is textual (rows separated by newlines, columns separated by separator characters, etc). 1 indicates the overall copy format is binary (similar to DataRow format). See COPY for more information.
1180
-
1181
-
Int16
1182
-
The number of columns in the data to be copied (denoted N below).
1183
-
1184
-
Int16[N]
1185
-
The format codes to be used for each column. Each must presently be zero (text) or one (binary). All must be zero if the overall copy format is textual.
Handler for CopyData message received via Amazon Redshift wire protocol, represented by b'd' code.
1208
-
1209
-
CopyData (F & B)
1210
-
Byte1('d')
1211
-
Identifies the message as COPY data.
1212
-
1213
-
Int32
1214
-
Length of message contents in bytes, including self.
1215
-
1216
-
Byten
1217
-
Data that forms part of a COPY data stream. Messages sent from the backend will always correspond to single data rows, but messages sent by frontends may divide the data stream arbitrarily.
Handler for CopyInResponse message received via Amazon Redshift wire protocol, represented by b'G' code.
1236
-
1237
-
CopyInResponse (B)
1238
-
Byte1('G')
1239
-
Identifies the message as a Start Copy In response. The frontend must now send copy-in data (if not prepared to do so, send a CopyFail message).
1240
-
1241
-
Int32
1242
-
Length of message contents in bytes, including self.
1243
-
1244
-
Int8
1245
-
0 indicates the overall COPY format is textual (rows separated by newlines, columns separated by separator characters, etc). 1 indicates the overall copy format is binary (similar to DataRow format). See COPY for more information.
1246
-
1247
-
Int16
1248
-
The number of columns in the data to be copied (denoted N below).
1249
-
1250
-
Int16[N]
1251
-
The format codes to be used for each column. Each must presently be zero (text) or one (binary). All must be zero if the overall copy format is textual.
0 commit comments