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

Add proper support for Word64 #1096

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Commits on Jul 5, 2020

  1. Add proper support for Word64

    Previously when the schema used `Word64` as the column type, Persistent
    would use `SqlInt64` as the SQL representation which means that `Word64`
    values above `maxBound :: Int64` would be stored as negative values in
    the database. That is fine for a database only accessed from Haskell but
    is a pain in the neck when the database is used as an interop layer for
    other languages.
    
    This commit fixes these issues by adding `SqlWord64` and `PersistWord64`.
    
    Closes: yesodweb#1095
    erikd committed Jul 5, 2020
    Configuration menu
    Copy the full SHA
    6b3c42d View commit details
    Browse the repository at this point in the history
  2. Update Changelog

    erikd committed Jul 5, 2020
    Configuration menu
    Copy the full SHA
    a7ee916 View commit details
    Browse the repository at this point in the history
  3. wip

    erikd committed Jul 5, 2020
    Configuration menu
    Copy the full SHA
    b3fcf15 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2020

  1. wip

    erikd committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    54e0979 View commit details
    Browse the repository at this point in the history
  2. wip

    erikd committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    71fc985 View commit details
    Browse the repository at this point in the history
  3. wip

    erikd committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    4ee1d40 View commit details
    Browse the repository at this point in the history
  4. wip

    erikd committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    2babbc4 View commit details
    Browse the repository at this point in the history