Skip to content

Commit

Permalink
Need to also change the way arrays are unnested.
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydtabb committed Jan 8, 2025
1 parent 4c52810 commit 4426044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/malloy/src/dialect/snowflake/snowflake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export class SnowflakeDialect extends Dialect {
parentType === 'array[scalar]' ||
parentType === 'array[record]'
) {
const arrayRef = `"${parentAlias}".value:${sqlName}`;
const arrayRef = `"${parentAlias}".value`;
switch (childType) {
case 'record':
case 'array':
Expand Down

0 comments on commit 4426044

Please sign in to comment.