We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be1286 commit 81bd409Copy full SHA for 81bd409
airflow/providers/google/cloud/transfers/cassandra_to_gcs.py
@@ -136,9 +136,9 @@ def __init__(
136
137
# Default Cassandra to BigQuery type mapping
138
CQL_TYPE_MAP = {
139
- 'BytesType': 'BYTES',
+ 'BytesType': 'STRING',
140
'DecimalType': 'FLOAT',
141
- 'UUIDType': 'BYTES',
+ 'UUIDType': 'STRING',
142
'BooleanType': 'BOOL',
143
'ByteType': 'INTEGER',
144
'AsciiType': 'STRING',
@@ -152,7 +152,7 @@ def __init__(
152
'DateType': 'TIMESTAMP',
153
'SimpleDateType': 'DATE',
154
'TimestampType': 'TIMESTAMP',
155
- 'TimeUUIDType': 'BYTES',
+ 'TimeUUIDType': 'STRING',
156
'ShortType': 'INTEGER',
157
'TimeType': 'TIME',
158
'DurationType': 'INTEGER',
0 commit comments