Skip to content

Commit

Permalink
Merge pull request #14 from RonildoSouza/fix_error_set_role
Browse files Browse the repository at this point in the history
disable feature connection-impersonation
  • Loading branch information
Baoqi authored Feb 28, 2024
2 parents 8974071 + 7a1fd0f commit 5dbcfde
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
description: Metabase version to compile with
type: string
default: v0.48.6
default: v0.48.7

jobs:
build-connector:
Expand Down
2 changes: 1 addition & 1 deletion resources/metabase-plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
info:
name: Metabase Dremio Driver
version: 1.3.0
version: 1.3.1
description: Allows Metabase to connect to Dremio.
driver:
- name: dremio
Expand Down
3 changes: 2 additions & 1 deletion src/metabase/driver/dremio.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
(driver/register! :dremio, :parent #{:postgres ::legacy/use-legacy-classes-for-read-and-set})

(doseq [[feature supported?] {:table-privileges false
:set-timezone false}]
:set-timezone false
:connection-impersonation false}]
(defmethod driver/database-supports? [:dremio feature] [_driver _feature _db] supported?))

;;; +----------------------------------------------------------------------------------------------------------------+
Expand Down

0 comments on commit 5dbcfde

Please sign in to comment.