aboutsummaryrefslogtreecommitdiff
path: root/lib/expression/_readme.rst
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-03-01 08:39:02 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-03-06 20:57:10 +0100
commit81db1bfd580791910646525e30bc45af34533987 (patch)
treec610f53c284d3707a3d6fe49486b5c09e66dc41f /lib/expression/_readme.rst
parent67320d8f04e1f302306b9aafdaaf4bafcf443839 (diff)
Rewrite the way to handle filters
Diffstat (limited to 'lib/expression/_readme.rst')
-rw-r--r--lib/expression/_readme.rst39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/expression/_readme.rst b/lib/expression/_readme.rst
new file mode 100644
index 0000000..729a950
--- /dev/null
+++ b/lib/expression/_readme.rst
@@ -0,0 +1,39 @@
+All thoses modules transforms an expression.
+
+Simple transformations
+----------------------
+
+:Ast:
+
+ Regenerate the Ast from the expression
+
+:Repr:
+
+ Generate a representable string
+
+:Type_of:
+
+ Infer the type of an expression
+
+:Compose:
+
+ Allow to use a module into another one.
+
+:Headers:
+
+ Extract the headers to display in the result file
+
+Composed transformations
+------------------------
+
+:Filter:
+
+ Generate the filters in the query. This module identify if one the
+ expression is actually a group window and handle a special case for this.
+
+ This module relies on Ast
+
+:Query:
+
+ Build an sql query. This module relies on Type_of
+