-
Notifications
You must be signed in to change notification settings - Fork 618
Description
I have a long SQL request (>16000 characters) which uses external data and I get a "400 bad request" response from server.
I see that the SQL text is put in URI in this case and that it is related to this problem:
(ClickHouseStatementImpl)
// write sql in query params when there is external data
// as it is impossible to pass both external data and sql in body
// TODO move sql to request body when it is supported in clickhouse
uri = buildRequestUri(
sql,
externalData,
additionalClickHouseDBParams,
additionalRequestParams,
ignoreDatabase
);
Is there any progress regarding this issue? Is there a workaround?
Reactions are currently unavailable