diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e13f347..e00c95c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update signing rotation endpoint for APIs - 403 status codes from the server now return as 403 instead of 500 +- Added Superblocks partner ID to the Databricks integration ## v1.15.1 diff --git a/workers/javascript/packages/plugins/databricks/src/index.ts b/workers/javascript/packages/plugins/databricks/src/index.ts index 9007602b..8b44f64e 100644 --- a/workers/javascript/packages/plugins/databricks/src/index.ts +++ b/workers/javascript/packages/plugins/databricks/src/index.ts @@ -46,6 +46,8 @@ interface TableQueryEntity { } export default class DatabricksPlugin extends DatabasePluginPooled { + // This is a NON SECRET id that identifies Superblocks to Databricks for partnership purposes. + private readonly DATABRICKS_PARTNER_CLIENT_ID = 'Superblocks'; pluginName = 'Databricks'; protected readonly parameterType = ':PARAM'; protected readonly columnEscapeCharacter = '`'; @@ -220,8 +222,6 @@ export default class DatabricksPlugin extends DatabasePluginPooled