yesodweb / yesodweb/persistent
Any field with a `SqlInt64` SqlType gets assigned the SERIAL8 type in PG
Nobody has claimed this yet.
- Dominant language
- Haskell
- Stars
- 486
- Forks
- 306
- PR merge metrics
- No merged PRs in 30d
Description
Only occurs when creating a table.
Any SqlInt64 type is assumed to be a SERIAL8 type. So if you have something like:
User
age Int64
Then (I thinK) age would be SERIAL8 or an autoincrementing value. I don't think this makes a huge difference, but it does result in a wasteful sequence being created.
dang we really gotta have better story around ID types
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the PostgreSQL table-creation mapping for SqlInt64 and inspect how SERIAL8 is selected. Verify the generated schema for an Int64 field such as User.age, then add or update coverage so ordinary Int64 fields do not create an unnecessary autoincrementing sequence.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- haskell, postgresql
- Domain
- databases
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100