I am currently implementing the clickhouse-client in a project and I run into a problem executing the following promise:
await this.clickhouseClient.queryPromise<SomeInterface>( `ALTER TABLE application UPDATE status = '${newV}' WHERE status = '${current}'` )
The problem is that the underlying Axios client receives an empty string '' on the data response. This empty string cannot be parsed and throws the error.
Hi there!
I am currently implementing the clickhouse-client in a project and I run into a problem executing the following promise:
await this.clickhouseClient.queryPromise<SomeInterface>( `ALTER TABLE application UPDATE status = '${newV}' WHERE status = '${current}'` )
The problem is that the underlying Axios client receives an empty string
''
on the data response. This empty string cannot be parsed and throws the error.The database update is actually executed.