Hi,
Is there any intention to support parametrized queries? for example:
const iter: Iterator<QueryResult> = await trino.query(
'select * from customer where id = :id', { id: '1'}
);
I saw that this is supported in the official python client: trinodb/trino-python-client#21
Thanks in advance