Add change note

This commit is contained in:
Tom Hvitved
2024-02-28 08:58:12 +01:00
parent e53357d376
commit 40089e8088

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* Path explanations now include flow that goes through callbacks passed into library functions. For example, if `map` is library function, then in `result = map(xs, x => x + 1)` we will now include the step from `x` to `x + 1` in the path explanation, instead og going directly from `xs` to `result`. Note that this change does not affect actual query results, but only how path explanations are computed.