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 5e928ab commit 17e5758Copy full SHA for 17e5758
src/main/java/io/r2dbc/postgresql/message/backend/AbstractCopyResponse.java
@@ -86,10 +86,6 @@ static Set<Format> readColumnFormats(ByteBuf in) {
86
int count = in.readShort();
87
Set<Format> formatSet = EnumSet.noneOf(Format.class);
88
89
- if (0 == count) {
90
- return formatSet;
91
- }
92
-
93
for (int i = 0; i < count; i++) {
94
formatSet.add(Format.valueOf(in.readShort()));
95
}
0 commit comments