databricks-sql-nodejs
databricks-sql-nodejs copied to clipboard
Databricks SQL Connector for Node.js
Hello! When using `executeStatement` from a IDBSQLSession, the type hinting returns an `IOperation` which is missing several of the helpful methods in `DBSQLOperation` (e.g. `getId()`). See: https://github.com/databricks/databricks-sql-nodejs/blob/771fb3b2b34a90a5b8cb8f15c3c379692bc7e955/lib/DBSQLSession.ts#L192. Is there a...
I know others have reported issues with the `lz4` module as well. In my case, it's only an issue when I deploy my app as an Azure Function. ``` Result:...
The `docs/troubleshooting.md` and `docs/readme.md` files were removed in 1.8.4 and no longer exist. The links to those docs from [https://docs.databricks.com/en/dev-tools/nodejs-sql-driver.html#additional-resources](https://docs.databricks.com/en/dev-tools/nodejs-sql-driver.html#additional-resources ) no longer work.
## Version I am using the 1.8.4 version ## Description We want to limit the amount of RAM usage. passing a default maxRows option has no effect, the whole query...
BigInts are currently converted to JS Numbers, which can't fit values over 2**53. Fixes #259 This is a breaking change, and I don't expect this to be merged as-is (it...
This changes the utlity module to return a function instead of the module directly. This way, caller can control when the module is actually tried to be resolved. When lz4...
Is this library supported on the above mentioned platforms? If not is there a workaround or patch that could be used an an alternative?
Problem The flaky Iterator tests were failing with: java.lang.IllegalStateException: Should not get result schema on an empty result handler This occurred due to two related race conditions: Root Cause 1:...
Hello, while load testing our app this week, we noticed that whenever querying with > 256 params, the driver will fail with a 400 status. Is this a known limitation?...