Skip to content

Commit

Permalink
Fix format of returned txlogs
Browse files Browse the repository at this point in the history
  • Loading branch information
imalsogreg committed Dec 13, 2023
1 parent 280322c commit 1412876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pact-core/Pact/Core/Persistence/SQLite.hs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ getTxLog serial db currTxId txLog tab txId = do
SQL.Done -> pure acc
SQL.Row -> do
[SQL.SQLText key, SQL.SQLBlob value] <- SQL.columns stmt
collect stmt (TxLog (_tableName tab) key value:acc)
collect stmt (TxLog (toUserTable tab) key value:acc)

readKeys :: forall k v b i. SQL.Database -> Domain k v b i -> IO [k]
readKeys db = \case
Expand Down

0 comments on commit 1412876

Please sign in to comment.