From 2e3969611d8c469348e5205981dc78e0a7424721 Mon Sep 17 00:00:00 2001 From: suremarc <8771538+suremarc@users.noreply.github.com> Date: Fri, 27 Dec 2024 15:24:25 +0000 Subject: [PATCH] explain what UDTF means --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3198b0e..15edd22 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a typical pattern with DataFusion, as files in object storage usually ar ## Example Here we walk through a hypothetical example of setting up a materialized view, to illustrate -what this library offers. The core of the incremental view maintenance is a UDTF, called `file_dependencies`, that +what this library offers. The core of the incremental view maintenance is a UDTF (User-Defined Table Function), called `file_dependencies`, that outputs a build graph for a materialized view. This gives users the information they need to determine when partitions of the materialized view need to be recomputed.