]> granicus.if.org Git - postgresql/commitdiff
Fix typo in JIT README.
authorPeter Geoghegan <pg@bowt.ie>
Sat, 9 Jun 2018 16:33:53 +0000 (09:33 -0700)
committerPeter Geoghegan <pg@bowt.ie>
Sat, 9 Jun 2018 16:33:53 +0000 (09:33 -0700)
Author: Daniel Gustafsson
Discussion: https://postgr.es/m/3747D478-41F9-439F-8074-AC81A5C76346@yesql.se

src/backend/jit/README

index 6271677163ac8acf9767370f3fff39b45f575dc2..e2fac8558e8e37d29d0d2e57ed0170e8c2eabfcf 100644 (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