Skip to content

Commit 287f41b

Browse files
committed
Resolve SQLite database path
1 parent a2ddca6 commit 287f41b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ func getConnectionString(dbInfo DatabaseConnectorInfoDatabase) (string, string,
263263
query += u.extraArgs
264264
return "clickhouse", fmt.Sprintf("tcp://%s?%s", u.address, query), nil
265265
case SQLiteDatabase:
266-
return "sqlite3", u.database, nil
266+
return "sqlite3", resolvePath(u.database), nil
267267
}
268268

269269
return "", "", nil

0 commit comments

Comments
 (0)