-
Notifications
You must be signed in to change notification settings - Fork 4
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
Review database column types and sizes #107
Comments
I've run into size limits in the tests with instrument name and process name, suggesting that they should be extended. |
The release number is, oddly, a String(20). I have no idea how that happened. @balarsen, did we do this on purpose so it could be "1.2" or "MARCH2020" or was this an accident? I'm not sure which it should be. This seems to go back to 2012 where we removed the release number from the file table (where it was also a string, length 2, although it was marked as an int in diskfile). |
Phew, I have no recollection and didn't find any notes. we have been doing "rel04" kinda things. But no idea. No strong preference on int vs string vs whatever. I lean toward string but you are way more in the loop than me. |
Can you check on your current releases if you're doing "rel04" or just "4"? I suspect we may want to rename the column if we keep it a string. |
So it appears moot as RBSP is not using it at all in the database. Change as you see fit. |
Because sqlite doesn't really do any type enforcing, I've managed to be pretty lazy about column types. This is coming to bite us in the postgres support (#60). So this needs a scrub...both for what promises SQLAlchemy makes about types and what happens when they come into postgres. For instance the unix_time table apparently is rolling over around 2040, which is REALLY weird because the Integer is supposed to be machine native (and I hope nobody's running on 32-bit now), and the 32-bit rollover is in 2038 anyhow. There's also some cases where the space allocated for certain columns storing paths is too short, etc.
Closure condition
We need to check what type/size columns should be, implement that (including any relevant code updates or testing), and my usual bugaboo, migration support.
The text was updated successfully, but these errors were encountered: