When trying to execute a query via sql warehouse, I get the following error:
INVALID_PARAMETER_MARKER_VALUE.DUPLICATE_NAME
the sql statement uses ? placeholders and the correct number of arguments are being passed.
I am not able to use named placeholders with my library, before I refactor I am wondering if there is something I am missing.
Sample SQL:
SELECT client_ip, count(*) as requests FROM {redacted} WHERE log_event_hour >= ? AND log_event_hour <= ? AND log_event_date >= ? AND log_event_date <= ? LIMIT 10 args: [1724332222,1724335822,"2024-08-22","2024-08-22"]