-
Notifications
You must be signed in to change notification settings - Fork 63
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
Sort grouped df #204
Sort grouped df #204
Conversation
Thanks to @koperagen the other example from the issue is now also tested and appears to be working correctly |
fun KSDeclaration.getQualifiedNameOrThrow(): String { | ||
return (qualifiedName ?: error("@DataSchema declaration ${simpleName.asString()} at $location must have qualified name")).asString() | ||
} | ||
fun KSDeclaration.getQualifiedNameOrThrow(): String = |
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.
isn't this commit merged already? is it intentional or something strange happened?
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.
huh you're right. That's odd. I'll do another rebase and check again
4573665
to
b34a541
Compare
okay now I really messed it up |
Work in progress fix for #161.
The first example is now fixed, but for the second example, I might need some test data to be sure it now works as expected.