silverbullet1
06/17/2023, 8:04 PMsuper
data type in redshift to json
, but I am not able to find any flexible type in typing.py.
The closest I see is CustomType, but I think it requires the schema as an input.
def __init__(self, jsonschema_type_dict: dict) -> None:
Is there a way to have a flexible schema to incorporate this ?silverbullet1
06/17/2023, 9:28 PMselect
key in my meltano.yml
but it is still checking all the available tables.pat_nadolny
06/19/2023, 3:24 PMsilverbullet1
06/19/2023, 6:29 PMedgar_ramirez_mondragon
06/19/2023, 8:19 PMis not able to load selected streamsAre you encountering an exception, or is it that that tap seems to be skipping those streams. If it’s the former, sharing the traceback might help us investigate what’s going on.
silverbullet1
06/19/2023, 9:43 PMDid not recognize type 'super' of column 'account_info'
for column_def in inspected.get_columns(table_name, schema=schema_name):
/Users/xx/Library/Caches/pypoetry/virtualenvs/tap-redshift-sI6JsuHw-py3.11/lib/python3.11/site-packages/singer_sdk/connectors/sql.py:436: SAWarning: Did not recognize type 'super' of column 'attributes'
for column_def in inspected.get_columns(table_name, schema=schema_name):
/Users/xx/Library/Caches/pypoetry/virtualenvs/tap-redshift-sI6JsuHw-py3.11/lib/python3.11/site-packages/singer_sdk/connectors/sql.py:436: SAWarning: Did not recognize type 'super' of column 'artifacts'
..
..
I suspect that there is a problem with function overriding here and here because its complaining about super data type not being mapped, even though I have mapped it to ObjectType()
. Maybe the problem with table selection is also related.silverbullet1
06/20/2023, 2:07 PMvisch
06/20/2023, 2:09 PMedgar_ramirez_mondragon
06/21/2023, 12:00 AMsqlalchemy-redshift
package