You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in #265 , we had to add a Redshift shim to ensure we could fit the hard coded references into our stg models unpacking the graph. In a desire to avoid having to override type_string in the future for redshift users, one possible solution is to change this field to an array type.
checkout the branch called array-hard-coded-references for the latest attempt!
Describe alternatives you've considered
Leaving this alone!
Who will this benefit?
Redshift users who use type_string()
The text was updated successfully, but these errors were encountered:
Note: VALUES does not support ARRAY_CONSTRUCT expression for snowflake
You may be able to do a insert into... select ... from ... values like so
insert into vartab
select column1 as n, array_construct(column2) as v
from values (1, 'null'),
(2, null),
(3, 'true'),
(4, '-17'),
(5, '123.12'),
(6, '1.912e2'),
(7, '"Om ara pa ca na dhih" '),
(8, '[-1, 12, 289, 2188, false,]'),
(9, '{ "x" : "abc", "y" : false, "z": 10} ')
as vals;
This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please comment on the issue or else it will be closed in 7 days.
Although we are closing this issue as stale, it's not gone forever. Issues can be reopened if there is renewed community interest. Just add a comment to notify the maintainers.
Describe the feature
in #265 , we had to add a Redshift shim to ensure we could fit the hard coded references into our stg models unpacking the graph. In a desire to avoid having to override
type_string
in the future for redshift users, one possible solution is to change this field to an array type.checkout the branch called
array-hard-coded-references
for the latest attempt!Describe alternatives you've considered
Leaving this alone!
Who will this benefit?
Redshift users who use
type_string()
The text was updated successfully, but these errors were encountered: