Skip to content

Commit

Permalink
SF QRep: Fix column casing issues (#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj authored Mar 12, 2024
1 parent 50646c9 commit 1514b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/snowflake/snowflake.go
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ func (c *SnowflakeConnector) getTableSchemaForTable(ctx context.Context, tableNa
colFields := make([]*protos.FieldDescription, 0, len(qRecordSchema.Fields))
for _, field := range qRecordSchema.Fields {
colFields = append(colFields, &protos.FieldDescription{
Name: field.Name,
Name: utils.PostgresIdentifierNormalize(field.Name),
Type: string(field.Type),
TypeModifier: numeric.MakeNumericTypmod(int32(field.Precision), int32(field.Scale)),
})
Expand Down

0 comments on commit 1514b3a

Please sign in to comment.