You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
CHProxy allows to specify a list of query string parameters to send to ClickHouse. But it does not allow overriding a value of those parameters at query time.
Describe the solution you'd like
e.g. if log_comment is allowed to be passed to ClickHouse with a value value1,
when a request is made like echo "select now()" | curl '<chproxy-host>:9001?user=<chproxy-user>&password=<chproxy-password>&log_comment=newValue1' --data-binary @-
log_comment is value1, instead of newValue1.
The desired behavior would be to
allow a set of query string parameters with default values to be sent to ClickHouse
if the value is overriden at query time, pass that value, else send default value
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
CHProxy allows to specify a list of query string parameters to send to ClickHouse. But it does not allow overriding a value of those parameters at query time.
Describe the solution you'd like
e.g. if
log_comment
is allowed to be passed to ClickHouse with a valuevalue1
,when a request is made like
echo "select now()" | curl '<chproxy-host>:9001?user=<chproxy-user>&password=<chproxy-password>&log_comment=newValue1' --data-binary @-
log_comment
isvalue1
, instead ofnewValue1
.The desired behavior would be to
The text was updated successfully, but these errors were encountered: