Hello, could you add a test query function that simply returns the query without executing it?
Nextras\Dbal\Connection.php
public function test(string $expression, ...$args): string
{
array_unshift($args, $expression);
return $this->sqlPreprocessor->process($args);
}