We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cef32ed commit a8a550aCopy full SHA for a8a550a
packages/core/src/database/declarative-database.ts
@@ -100,8 +100,8 @@ export class DeclarativeDatabase {
100
const now = this.hlc.now();
101
const hlcString = Hlc.toString(now);
102
103
- // Prepare values with system columns
104
- const valuesToInsert = { ...values };
+ // Prepare values with system columns (filter out tracking properties)
+ const valuesToInsert = this._extractRecordData(values);
105
106
if (!valuesToInsert['system_id']) {
107
valuesToInsert['system_id'] = crypto.randomUUID();
0 commit comments