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

Make null param error more informative (#809) #2143

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ulfryk
Copy link

@ulfryk ulfryk commented Nov 20, 2024

Same as #2141 but with more information.

The error message string is created only in if (a == null) branch ( to solve issue spotted here #2141 (comment) )

case None => unsafeSetNull(ps, n)
}

private def unsafeSetWhatShouldNotBeNull(ps: PreparedStatement, n: Int, a: A, message: Int => String): Unit =
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this will still allocate the anonymous function (unless JIT is able to elide the allocation?)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's actually a good point, but is it so if it's an axisting method passed as an argument? How is it compiled to bytecode?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants