We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
If *print-case* is not :UPCASE, it seems that Mito fails to retrieve relationship fields via accessors. Example:
*print-case*
:UPCASE
(setf *print-case* :downcase) (deftable user () ((name :col-type (:varchar 512))))) (deftable tweet () ((status :col-type (:varchar 512)))) ((user :col-type user))) (let* ((user (create-dao 'user :name "foo")) (tweet (create-dao 'tweet :status "bar" :user user))) (user tweet))
The last expression returns nil, while it should return some #<USER {...}> object.
nil
#<USER {...}>
The text was updated successfully, but these errors were encountered:
reproduced here. (Thanks for the report!!)
Sorry, something went wrong.
related: fukamachi/quri#24
tested better by putting my changes in local-projects: it works for me©.
Successfully merging a pull request may close this issue.
If
*print-case*
is not:UPCASE
, it seems that Mito fails to retrieve relationship fields via accessors. Example:The last expression returns
nil
, while it should return some#<USER {...}>
object.The text was updated successfully, but these errors were encountered: