I am considering using datalog as a database for the application that I am writing because I see a potential that allows me to easily switch between views without having to sacrifice my collected data or write cumbersome migration.
However, I cannot foresee how I will deal with data changes - for example, something as simple as a removable password. I had the idea to mark the lines with a date:
changepassword(<user>, <passhash>, <date>)
and then use the latest version, but there seems to be no way to get the latest version without returning all the rows and filtering them on the application side.
How are data logging applications designed to handle changing data?
luqui source share