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 6ecd66d commit a51ff11Copy full SHA for a51ff11
src/main/java/io/r2dbc/mssql/MssqlRowMetadata.java
@@ -121,12 +121,16 @@ public boolean isEmpty() {
121
public boolean contains(Object o) {
122
123
if (o instanceof String) {
124
- return this.findColumn((String) o) != null;
+ return contains((String) o);
125
}
126
127
return false;
128
129
130
+ public boolean contains(String columnName) {
131
+ return this.findColumn(columnName) != null;
132
+ }
133
+
134
@Override
135
public boolean containsAll(Collection<?> c) {
136
0 commit comments