You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 12, 2018. It is now read-only.
Datomic (and the Clojure implementation of Mentat) allow to specify the :db/txInstant that the transaction will be applied with by including a datom like
[[:db/add:db/tx:db/txInstant INSTANT]]
(Note that the :db/tx is a Mentat addition, although I think Datomic added an equivalent thing recently.) This requires INSTANT to be strictly after the last transaction timestamp and strictly before the current transactor timestamp.
Adding this allows to import data with meaningful timestamps, for example.
Datomic (and the Clojure implementation of Mentat) allow to specify the
:db/txInstantthat the transaction will be applied with by including a datom like(Note that the
:db/txis a Mentat addition, although I think Datomic added an equivalent thing recently.) This requiresINSTANTto be strictly after the last transaction timestamp and strictly before the current transactor timestamp.Adding this allows to import data with meaningful timestamps, for example.