Skip to content

Commit

Permalink
Resolve SQLite database path
Browse files Browse the repository at this point in the history
  • Loading branch information
eatonphil committed Feb 6, 2022
1 parent a2ddca6 commit 287f41b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/database.go
Expand Up @@ -263,7 +263,7 @@ func getConnectionString(dbInfo DatabaseConnectorInfoDatabase) (string, string,
query += u.extraArgs
return "clickhouse", fmt.Sprintf("tcp://%s?%s", u.address, query), nil
case SQLiteDatabase:
return "sqlite3", u.database, nil
return "sqlite3", resolvePath(u.database), nil
}

return "", "", nil
Expand Down

0 comments on commit 287f41b

Please sign in to comment.