Skip to content

Commit 34fd4d6

Browse files
committed
fix null exception.
1 parent 6149817 commit 34fd4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/database_access.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class DatabaseTransactionBase<TABLES extends TablesBase> {
125125

126126
Future<PostgreSQLResult> query(String fmtString,
127127
{Map<String, Object>? values,
128-
bool? allowReuse,
128+
bool allowReuse = true,
129129
int? timeoutInSeconds}) async {
130130
assert(_assertCorrectValues(values));
131131
return _conn.query(fmtString,

0 commit comments

Comments
 (0)