Trying to add bookmark functionality, getting some blockers
When i try to edit the revision query by putting a condition on date time as condition = and_(item_table.c.id == rev_table.c.item_id,rev_table.c.datetime > bookmark_time), the query i am getting comes like this `SELECT rev_table.datetime, item_table.name, rev_table.revno, rev_table.id FROM rev_table, item_table WHERE item_table.id = rev_table.item_id AND rev_table.datetime > ? ORDER BY rev_table.datetime DESC'
why isnt it putting the value of variable bookmark_time ?
I am printing the value of that variable separately on console, it is showing the correct value there ? what could be wrong ?.