File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
infra/offline_stores/contrib/clickhouse_offline_store Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ def pull_latest_from_table_or_query(
176
176
FROM (
177
177
SELECT { a_field_string } ,
178
178
ROW_NUMBER() OVER({ partition_by_join_key_string } ORDER BY { timestamp_desc_string } ) AS _feast_row
179
- FROM ( { from_expression } ) a
179
+ FROM { from_expression } a
180
180
WHERE a."{ timestamp_field } "
181
181
BETWEEN toDateTime64('{ start_date .replace (tzinfo = None )!s} ', 6, '{ start_date .tzinfo !s} ')
182
182
AND toDateTime64('{ end_date .replace (tzinfo = None )!s} ', 6, '{ end_date .tzinfo !s} ')
Original file line number Diff line number Diff line change 100
100
"duckdb" : "feast.infra.offline_stores.duckdb.DuckDBOfflineStore" ,
101
101
"remote" : "feast.infra.offline_stores.remote.RemoteOfflineStore" ,
102
102
"couchbase.offline" : "feast.infra.offline_stores.contrib.couchbase_offline_store.couchbase.CouchbaseColumnarOfflineStore" ,
103
+ "clickhouse" : "feast.infra.offline_stores.contrib.clickhouse_offline_store.clickhouse.ClickhouseOfflineStore" ,
103
104
}
104
105
105
106
FEATURE_SERVER_CONFIG_CLASS_FOR_TYPE = {
You can’t perform that action at this time.
0 commit comments