Skip to content

Commit

Permalink
seemps good
Browse files Browse the repository at this point in the history
  • Loading branch information
danylo-safonov-solid committed Sep 21, 2023
1 parent 1757b65 commit b0810ce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/src/connection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ extension ConnectionProps on Connection {
Future<T> queryArray<T extends QueryResult>(Query query) =>
callFutureMethod(this, 'query', [query]);

// https://deno.land/x/postgres@v0.17.0/connection/connection.ts?s=Connection#method_startup_0
// startup(is_reconnection: boolean)
/// [deno-postgres@v0.17.0/Connection/startup](https://deno.land/x/postgres@v0.17.0/connection/connection.ts?s=Connection#method_startup_0).
Future<void> startup({required bool isReconnection}) =>
callFutureMethod(this, 'startup', [isReconnection]);
}

0 comments on commit b0810ce

Please sign in to comment.