This commit is contained in:
omahs
2023-09-04 10:11:40 +02:00
committed by Owen Mansel-Chan
parent 884f41b6f0
commit 473f17c0e6

View File

@@ -302,7 +302,7 @@ after join ordering. This can be useful to prevent the optimiser from choosing
a sub-optimal join order.
For instance, in the example below, the ``pragma[inline_late]`` and
``bindingset[x]`` annotations specifiy that calls to ``p`` should be join ordered
``bindingset[x]`` annotations specify that calls to ``p`` should be join ordered
in a context where ``x`` is already bound. This forces the join orderer to
order ``q(x)`` before ``p(x)``, which is more computationally efficient
than ordering ``p(x)`` before ``q(x)``.