Skip to content

Commit d058adf

Browse files
2010YOUY01wiedld
authored andcommitted
Add generate_series() udtf (and introduce 'lazy' MemoryExec) (apache#13540)
* Add generate_series() udtf * liscence * fix examples * clippy * comments * singleton udtf init * StreamingMemoryExec -> LazyMemoryExec * use RwLock * test udf+udtf generate_series() in the same sql * CI * CI * small fixes
1 parent 7a0dd9d commit d058adf

File tree

20 files changed

+902
-143
lines changed

20 files changed

+902
-143
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ members = [
3030
"datafusion/functions",
3131
"datafusion/functions-aggregate",
3232
"datafusion/functions-aggregate-common",
33+
"datafusion/functions-table",
3334
"datafusion/functions-nested",
3435
"datafusion/functions-window",
3536
"datafusion/functions-window-common",
@@ -108,6 +109,7 @@ datafusion-functions = { path = "datafusion/functions", version = "43.0.0" }
108109
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "43.0.0" }
109110
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "43.0.0" }
110111
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "43.0.0" }
112+
datafusion-functions-table = { path = "datafusion/functions-table", version = "43.0.0" }
111113
datafusion-functions-window = { path = "datafusion/functions-window", version = "43.0.0" }
112114
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "43.0.0" }
113115
datafusion-optimizer = { path = "datafusion/optimizer", version = "43.0.0", default-features = false }

0 commit comments

Comments
 (0)