8000 Feature/decimal support by GoEddie · Pull Request #982 · dotnet/spark · GitHub
[go: up one dir, main page]

Skip to content

Feature/decimal support #982

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

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
extra line
  • Loading branch information
GOEddieUK committed Oct 14, 2021
commit a72e1524f83ef7c5e1ed85f3f59467cb74cedb7e
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ class SerDe(val tracker: JVMObjectTracker) {
}

def writeObject(dos: DataOutputStream, value: Object): Unit = {

if (value == null || value == Unit) {
writeType(dos, "void")
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ class SerDe(val tracker: JVMObjectTracker) {
}

def writeObject(dos: DataOutputStream, value: Object): Unit = {

if (value == null || value == Unit) {
writeType(dos, "void")
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ class SerDe(val tracker: JVMObjectTracker) {
}

def writeObject(dos: DataOutputStream, value: Object): Unit = {

if (value == null || value == Unit) {
writeType(dos, "void")
} else {
Expand Down
0