-
Notifications
You must be signed in to change notification settings - Fork 5
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
implement java.sql.ResultSet #30
implement java.sql.ResultSet #30
Conversation
c6a4aa5
to
7c20f05
Compare
…' into HIBERNATE-21-implement-resultSet
…' into HIBERNATE-21-implement-resultSet
…g insertion and in $project list
# Conflicts: # src/main/java/com/mongodb/hibernate/jdbc/MongoConnection.java # src/main/java/com/mongodb/hibernate/jdbc/MongoPreparedStatement.java # src/main/java/com/mongodb/hibernate/jdbc/MongoStatement.java
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoResultSetTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoResultSetTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoResultSetTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoResultSetTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoResultSetTests.java
Outdated
Show resolved
Hide resolved
…redStatementIntegrationTests.java Co-authored-by: Maxim Katcharov <[email protected]>
…mentIntegrationTests.java Co-authored-by: Maxim Katcharov <[email protected]>
…s.next()` after metadata checking
Co-authored-by: Valentin Kovalenko <[email protected]>
… in $project stage
6ecc035
to
64eb6b7
Compare
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.
The last reviewed commit is 7b53c42.
I finally got to reviewing the test code.
src/test/java/com/mongodb/hibernate/jdbc/MongoConnectionTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoStatementIntegrationTests.java
Outdated
Show resolved
Hide resolved
…java Co-authored-by: Valentin Kovalenko <[email protected]>
src/test/java/com/mongodb/hibernate/jdbc/MongoStatementTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoStatementTests.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementIntegrationTests.java
Show resolved
Hide resolved
Co-authored-by: Valentin Kovalenko <[email protected]>
Co-authored-by: Valentin Kovalenko <[email protected]>
…' into HIBERNATE-21-implement-resultSet
The jdbc integration testing classes are pretty messy for I hesitated to switch to Thanks for your review comments. I appreciate it. |
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.
The last reviewed commit is 3bd9b5b.
MongoResultSetTests.java
, MongoPreparedStatementTests.java
are yet to be reviewed.
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.
The last reviewed commit is 3bd9b5b. All files were reviewed.
src/test/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementTests.java
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementTests.java
Outdated
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoPreparedStatementTests.java
Show resolved
Hide resolved
src/test/java/com/mongodb/hibernate/jdbc/MongoResultSetTests.java
Outdated
Show resolved
Hide resolved
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.
The last reviewed commit is 323a09e.
- Do you plan to do any more changes as per what you said in implement java.sql.ResultSet #30 (comment)?
- implement java.sql.ResultSet #30 (comment) is still open and needs addressing.
I missed that. Adopted and pushed. |
What about the other thread? |
I missed that as well. Now both threads are resolved. |
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.
The last reviewed commit is 2daab80.
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.
LGTM
https://jira.mongodb.org/browse/HIBERNATE-21
A subtask for "load by id" parent ticket (https://jira.mongodb.org/browse/HIBERNATE-20). Compared to DML processing (insertion, updating and deletion), aggregate query brings about more complexity by returning ResultSet. Given we just finished
Statement
andPreparedStatement
, it seems good timing to proceed to the last important JDBC component implementation.