-
Notifications
You must be signed in to change notification settings - Fork 345
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
Question: Get history list #1309
Comments
Hi @iambudi, a single field update in a table doesn't mean a separate TX as you can execute many SQL statements in one transaction. Therefore its often not possible to pin an update to a transaction. You can find more here: https://docs.immudb.io/master/develop/sql/querying.html#time-trave |
Hi @dzlabsch,
Thank you. |
Hi @iambudi, it's a good point. Currently the SQL queries are not returning the history, restricting the period based on transaction IDs or timestamp will still resolve to the latest value assigned in such period. There is an open request I wrote but we haven't yet implemented, would you like to take a look at it and provide feedback? #930 |
Hi,
I'm new to immudb and just tried it with go code using
database/sql
but need some insight.Let's say i have product table and i update the price of product id 3 times.
BEFORE or AFTER TX 5
how can i know the TX number?Thank you.
The text was updated successfully, but these errors were encountered: