Skip to content
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

Support for Pipelining #145

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
270 changes: 188 additions & 82 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

<properties>
<java.version>11</java.version>
<ojdbc.version>21.11.0.0</ojdbc.version>
<ojdbc.version>23.4.0.24.05</ojdbc.version>
<r2dbc.version>1.0.0.RELEASE</r2dbc.version>
<reactor.version>3.5.11</reactor.version>
<reactive-streams.version>1.0.3</reactive-streams.version>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/oracle/r2dbc/OracleR2dbcOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ private OracleR2dbcOptions() {}
*/
public static final Option<CharSequence> KERBEROS_JAAS_LOGIN_MODULE;


/** The unmodifiable set of all extended options */
private static final Set<Option<?>> OPTIONS = Set.of(
DESCRIPTOR = Option.valueOf("oracle.r2dbc.descriptor"),
Expand Down
415 changes: 20 additions & 395 deletions src/main/java/oracle/r2dbc/impl/AsyncLock.java

Large diffs are not rendered by default.

Loading
Loading