-
Notifications
You must be signed in to change notification settings - Fork 145
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
Fix Nothing DataType serde #390
Conversation
Codecov Report
@@ Coverage Diff @@
## master #390 +/- ##
============================================
+ Coverage 62.41% 62.43% +0.02%
- Complexity 1249 1250 +1
============================================
Files 135 135
Lines 6638 6640 +2
Branches 516 516
============================================
+ Hits 4143 4146 +3
Misses 2219 2219
+ Partials 276 275 -1
Continue to review full report at Codecov.
|
import com.github.housepower.misc.SQLLexer; | ||
import com.github.housepower.serde.BinaryDeserializer; | ||
import com.github.housepower.serde.BinarySerializer; | ||
|
||
import java.io.IOException; | ||
import java.sql.SQLException; | ||
import java.sql.Types; |
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.
unnecessary change
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 import order changed again...
...house-native-jdbc/src/main/java/com/github/housepower/data/type/complex/DataTypeNothing.java
Outdated
Show resolved
Hide resolved
...house-native-jdbc/src/main/java/com/github/housepower/data/type/complex/DataTypeNothing.java
Outdated
Show resolved
Hide resolved
Let's avoid unnecessary changes to make this patch portable |
* Fix Nothing DataType serde * Fix Nothing DataType serde * Fix Nothing DataType serde * Fix Lint
Fixes #389