Audit table and after_save hook

Not sure how to address this issue.

I’m trying to pull a value from the audit table when executing an after_save hook. But the audit table is not yet updated…

In other words it looks like the audit table gets updated AFTER the after_save hook is fired which is strange since I would assume that it’s part of the save action…

Is there a possible work-around? Like a manually created audit table or something?

Anyways mine is really an edge case, this is not really needed most of the time because the latest value in audit table will simply be $bean->field_name and the previous value will be in $bean->fetched_row[“field_name”]