Skip to content

Commit 5511df5

Browse files
committed
fix(tsql): satisfy the tenant column type in the merge guard test schema
1 parent cbe5444 commit 5511df5

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

internal-packages/tsql/src/query/printer.test.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4066,8 +4066,14 @@ describe("mergeGroupKey validation", () => {
40664066
filterable: false,
40674067
},
40684068
organization_id: { name: "organization_id", ...column("String") },
4069+
project_id: { name: "project_id", ...column("String") },
4070+
environment_id: { name: "environment_id", ...column("String") },
4071+
},
4072+
tenantColumns: {
4073+
organizationId: "organization_id",
4074+
projectId: "project_id",
4075+
environmentId: "environment_id",
40694076
},
4070-
tenantColumns: { organizationId: "organization_id" },
40714077
};
40724078

40734079
function compile(

0 commit comments

Comments
 (0)