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

Process keyword fields correctly in FromRow macro #200

Merged
merged 1 commit into from
Mar 31, 2020

Commits on Mar 30, 2020

  1. Process keyword fields correctly in FromRow macro

    This PR fixes the the incorrect handling of keywords fields of a struct in the FromRow macro.
    Currently a struct with a field like 'r#type' will try to read values from a column with the exact same name with r# prefix. With this change this field will now map to a database column with the correct name 'type' without the r# prefix.
    sidred committed Mar 30, 2020
    Configuration menu
    Copy the full SHA
    40f11eb View commit details
    Browse the repository at this point in the history