[jOOQ/jOOQ#12193] Stop using now deprecated RowMetadata::getColumnNames

This commit is contained in:
Lukas Eder 2021-09-02 09:28:39 +02:00
parent 68277d644e
commit 4cef5556eb

View File

@ -1177,7 +1177,7 @@ final class R2DBC {
@Override
public final int getColumnCount() throws SQLException {
return m.getColumnNames().size();
return m.getColumnMetadatas().size();
}
@Override