We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
Could not find the place where the parameters are converted to their kusto types, as described here.
parameters
For example, if I specify a date parameter:
clientRequestProperties.setParameter('startTime', new Date().toISOString());
Then something in your package will wrap the value with datetime(<value>). However, if I provide an array of values:
datetime(<value>)
clientRequestProperties.setParameter('ids', [1,2,3]);
The package will not sanitize it to dynamic(<value>).
dynamic(<value>)
Tried looking for the actual code doing this sanitization, however I couldn't find it.
azure-kusto-node/azure-kusto-data/source/clientRequestProperties.ts
Lines 64 to 80 in 6f77491
The text was updated successfully, but these errors were encountered:
Hi @johnib ,
We will add this to our backlog.
As a workaround, please explicitly add the dynamic wrapper as needed.
CC @yogilad
Sorry, something went wrong.
amshalev
No branches or pull requests
Hey,
Could not find the place where the
parameters
are converted to their kusto types, as described here.For example, if I specify a date parameter:
Then something in your package will wrap the value with
datetime(<value>)
.However, if I provide an array of values:
The package will not sanitize it to
dynamic(<value>)
.Tried looking for the actual code doing this sanitization, however I couldn't find it.
azure-kusto-node/azure-kusto-data/source/clientRequestProperties.ts
Lines 64 to 80 in 6f77491
The text was updated successfully, but these errors were encountered: