Fix typo in JIT README.

Author: Daniel Gustafsson
Discussion: https://postgr.es/m/3747D478-41F9-439F-8074-AC81A5C76346@yesql.se
This commit is contained in:
Peter Geoghegan 2018-06-09 09:33:53 -07:00
parent 0c8910a0ca
commit f6b95ff434
1 changed files with 4 additions and 4 deletions

View File

@ -11,10 +11,10 @@ is possible to generate a function than can be natively executed by
the CPU that just handles that expression, yielding a speedup.
That this is done at query execution time, possibly even only in cases
the relevant task is done a number of times, makes it JIT, rather than
ahead-of-time (AOT). Given the way JIT compilation is used in
PostgreSQL, the lines between interpretation, AOT and JIT are somewhat
blurry.
where the relevant task is done a number of times, makes it JIT,
rather than ahead-of-time (AOT). Given the way JIT compilation is used
in PostgreSQL, the lines between interpretation, AOT and JIT are
somewhat blurry.
Note that the interpreted program turned into a native program does
not necessarily have to be a program in the classical sense. E.g. it