Skip to content

Commit 2090b97

Browse files
committed
chore(cubestore): Upgrade DF 46: Make TopicTableProvider udf_names implementation return three names
1 parent 9413e79 commit 2090b97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rust/cubestore/cubestore/src/streaming/topic_table_provider.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,8 @@ impl ContextProvider for TopicTableProvider {
408408
}
409409

410410
fn udf_names(&self) -> Vec<String> {
411-
Vec::new()
411+
// TODO upgrade DF: We probably need to register the UDFs and have all the default UDFs.
412+
vec!["parse_timestamp".to_owned(), "convert_tz_ksql".to_owned(), "format_timestamp".to_owned()]
412413
}
413414

414415
fn udaf_names(&self) -> Vec<String> {

0 commit comments

Comments
 (0)