Skip to content

Commit 908fa3a

Browse files
committed
fix
1 parent e0b1bdd commit 908fa3a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

templates/typescript-tests/src/ingest/indexSignatureTests.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
OlapTable,
1313
Key,
1414
DateTime,
15-
ClickHouseJson,
1615
} from "@514labs/moose-lib";
1716

1817
/**
@@ -41,8 +40,8 @@ export interface UserEventOutput {
4140
userId: Key<string>;
4241
orgId?: string;
4342
projectId?: string;
44-
// All additional properties collected into a JSON column
45-
properties: Record<string, any> & ClickHouseJson;
43+
// JSON column for extra properties (uses Record<string, any> which maps to Json)
44+
properties: Record<string, any>;
4645
}
4746

4847
// Output table for processed events

0 commit comments

Comments
 (0)