@@ -169,18 +169,19 @@ def list(cls) -> typing.List["RedshiftDatatypes"]:
169169 "ffffffffffffff" ,
170170 )
171171 ],
172- RedshiftDatatypes .intervaly2m .name : [
173- ("37 months" , IntervalYearToMonth (37 ), "y2m_postgres_format" ),
174- ("1-1" , IntervalYearToMonth (13 ), "y2m_sql_standard_format" ),
175- ("-178956970-8" , IntervalYearToMonth (- (2 ** 31 )), "y2m_min_value" ),
176- ("178956970-7" , IntervalYearToMonth (2 ** 31 - 1 ), "y2m_max_value" ),
177- ],
178- RedshiftDatatypes .intervald2s .name : [
179- ("10 days 48 hours" , IntervalDayToSecond (12 * 86400 * 1000000 ), "d2s_postgres_format" ),
180- ("10 23:59:59.999999" , IntervalDayToSecond (11 * 86400 * 1000000 - 1 ), "d2s_sql_standard_format" ),
181- ("-106751991 -04:00:54.775808" , IntervalDayToSecond (- (2 ** 63 )), "d2s_min_value" ),
182- ("106751991 04:00:54.775807" , IntervalDayToSecond (2 ** 63 - 1 ), "d2s_max_value" ),
183- ]
172+ # TODO: re-enable when server supports
173+ # RedshiftDatatypes.intervaly2m.name: [
174+ # ("37 months", IntervalYearToMonth(37), "y2m_postgres_format"),
175+ # ("1-1", IntervalYearToMonth(13), "y2m_sql_standard_format"),
176+ # ("-178956970-8", IntervalYearToMonth(-(2**31)), "y2m_min_value"),
177+ # ("178956970-7", IntervalYearToMonth(2**31 - 1), "y2m_max_value"),
178+ # ],
179+ # RedshiftDatatypes.intervald2s.name: [
180+ # ("10 days 48 hours", IntervalDayToSecond(12 * 86400 * 1000000), "d2s_postgres_format"),
181+ # ("10 23:59:59.999999", IntervalDayToSecond(11 * 86400 * 1000000 - 1), "d2s_sql_standard_format"),
182+ # ("-106751991 -04:00:54.775808", IntervalDayToSecond(-(2**63)), "d2s_min_value"),
183+ # ("106751991 04:00:54.775807", IntervalDayToSecond(2**63 - 1), "d2s_max_value"),
184+ # ]
184185 # TODO: re-enable
185186 # RedshiftDatatypes.geography.name: (
186187 # (
0 commit comments