Skip to content

Commit d1ec617

Browse files
committed
fix: define excplicit fields to avoid columns duplication
1 parent aca1abc commit d1ec617

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

services/apps/snowflake_connectors/src/integrations/tnc/courses/buildSourceQuery.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,21 @@ export const buildSourceQuery = (sinceTimestamp?: string): string => {
3434
let select = `
3535
SELECT
3636
ca.*,
37-
co.*,
37+
co.title,
38+
co.course_group_id,
39+
co.client_id,
40+
co.sku,
41+
co.status,
42+
co.slug,
43+
co.created_ts,
44+
co.start_date,
45+
co.end_date,
46+
co.is_training,
47+
co.is_certification,
48+
co.instruction_type,
49+
co.product_type,
50+
co.location,
51+
co.is_test_or_archived,
3852
tu.user_email,
3953
tu.lfid,
4054
tu.learner_name,

0 commit comments

Comments
 (0)