Skip to content

Commit 177341e

Browse files
committed
fix null pointer exception
1 parent 99e1d0e commit 177341e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rai-sdk/src/main/java/com/relationalai/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ public TransactionResult execute(
715715

716716
public HashMap<String, Any> executeAsyncWait(
717717
String database, String engine, String source, boolean readonly) throws HttpError, IOException, InterruptedException {
718-
return executeAsyncWait(database, engine, source, readonly, null);
718+
return executeAsyncWait(database, engine, source, readonly, new HashMap<>());
719719
}
720720

721721
public HashMap<String, Any> executeAsyncWait(

0 commit comments

Comments
 (0)