Skip to content

Commit 188c6c5

Browse files
committed
fix: cast meetingid to varchar
Signed-off-by: Mouad BANI <mouad-mb@outlook.com>
1 parent dce716b commit 188c6c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • services/apps/snowflake_connectors/src/integrations/meetings/meeting-attendance

services/apps/snowflake_connectors/src/integrations/meetings/meeting-attendance/buildSourceQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const buildSourceQuery = (sinceTimestamp?: string): string => {
2626
let select = `
2727
SELECT
2828
t.PRIMARY_KEY,
29-
t.MEETING_ID,
29+
CAST(t.MEETING_ID AS VARCHAR) AS MEETING_ID,
3030
t.MEETING_NAME,
3131
t.PROJECT_ID,
3232
t.PROJECT_NAME,

0 commit comments

Comments
 (0)