-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
feat(idp): support Oracle database for JDBC IdP #2654
Draft
tcompiegne
wants to merge
1
commit into
master
Choose a base branch
from
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
feat(idp): support Oracle database for JDBC IdP #2654
tcompiegne
wants to merge
1
commit into
master
from
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
Conversation
This file contains 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
tcompiegne
force-pushed
the
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
branch
from
May 30, 2023 12:51
f470b1d
to
c8bf3f5
Compare
tcompiegne
force-pushed
the
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
branch
from
May 31, 2023 20:00
c8bf3f5
to
50e0c33
Compare
tcompiegne
force-pushed
the
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
branch
from
June 3, 2023 16:01
50e0c33
to
ffbe159
Compare
tcompiegne
force-pushed
the
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
branch
from
June 14, 2023 08:22
ffbe159
to
9e634b2
Compare
closes AM-586
tcompiegne
force-pushed
the
AM-586-identity-provider-support-oracle-database-for-the-jdbc-id-p
branch
from
June 14, 2023 08:23
9e634b2
to
a19f8f8
Compare
Kudos, SonarCloud Quality Gate passed! |
leleueri
requested changes
Sep 13, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In addition of the review comment, can you please solve conflict ?
Comment on lines
+6
to
+7
CREATE TABLE idp_users___ (id NVARCHAR2(64) NOT NULL, username NVARCHAR2(320) NOT NULL, password NVARCHAR2(255) NULL, email NVARCHAR2(320) NULL, metadata CLOB NULL, PRIMARY KEY (id)) | ||
CREATE INDEX idp_users____username_idx ON users(username) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue: username must be unique
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.
Closes AM-586