diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-04-10 20:27:59 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-04-12 09:47:47 +0200 |
commit | c284321b1073e06481c63e2c061a1600fa68254d (patch) | |
tree | 87155166131f8bdfce92dbb5eb68e66b223fa1fd /lib/analysers/dependency.mli | |
parent | 9e2dbe43abe97c4e60b158e5fa52172468a2afb8 (diff) |
Added filters expressions in the externals
Diffstat (limited to 'lib/analysers/dependency.mli')
-rw-r--r-- | lib/analysers/dependency.mli | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/analysers/dependency.mli b/lib/analysers/dependency.mli index 522436c..1eb55c5 100644 --- a/lib/analysers/dependency.mli +++ b/lib/analysers/dependency.mli @@ -29,7 +29,10 @@ type key = { (** The list of columns used in the key. All the columns are referenced in the expression. We can have many columns used inside a single key when a function is used (for example for joining multiple columns into a - single key) *) + single key). + + The columns used in the filter are also declared as well. *) + filters : ImportDataTypes.Path.column ImportExpression.T.t list; } [@@deriving show, eq] (** This type describe the join key in a table. The name is the refering table |