add the ability to switch to other schemas#267
Merged
danvergara merged 9 commits intomainfrom Oct 17, 2025
Merged
Conversation
db78acb to
58b7dce
Compare
…he oracle databases
…is present or not
… for the oracle databases
e1301d9 to
dde35c8
Compare
bc07bc4 to
247016e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Schema usage for Oracle databases
As requested in #265, this PR adds the ability to use
schemasin Oracle. As you may know, they differ a little bit from the ones in Postgres since they're tightly coupled with users, but it's possible to grant access to another users.This PR reuses the
--schemafrom Postgres.Say, a user1 has granted access to user2 to their schema, and the latter wants to see the user1's tables, it only has to add the schema flag to the CLI, as done for Postgres databases.
In the image the user2 can see the user1's tables (TEST_TABLLE in this case).
Fixes #265
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
QA the change by creating two different users, granting access to the second one, so that, the second could see the first user's tables.
Checklist: