File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
src/main/java/com/github/pgasync/impl Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Postgres-async-driver is available on [Maven Central](http://search.maven.org/#s
10
10
<dependency >
11
11
<groupId >com.github.alaisi.pgasync</groupId >
12
12
<artifactId >postgres-async-driver</artifactId >
13
- <version >0.7 </version >
13
+ <version >0.8 </version >
14
14
</dependency >
15
15
```
16
16
Original file line number Diff line number Diff line change @@ -228,6 +228,10 @@ public Object get(String column) {
228
228
return dataConverter .toObject (pgColumn .type , data .getValue (pgColumn .index ));
229
229
}
230
230
231
+ public Map <String , PgColumn > getColumns () {
232
+ return columns ;
233
+ }
234
+
231
235
PgColumn getColumn (String name ) {
232
236
if (name == null ) {
233
237
throw new IllegalArgumentException ("Column name is required" );
You can’t perform that action at this time.
0 commit comments