diff options
author | Peter Geoghegan | 2018-06-09 16:33:53 +0000 |
---|---|---|
committer | Peter Geoghegan | 2018-06-09 16:33:53 +0000 |
commit | f6b95ff434bff28c0d9b390d5a0ff316847c4fb7 (patch) | |
tree | 66e8bee4d543cf285a7bdf4e8527ba0fbaf3bd2e | |
parent | 0c8910a0cab7c1e439bf5f5850122c36359e6799 (diff) |
Fix typo in JIT README.
Author: Daniel Gustafsson
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/backend/jit/README | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/jit/README b/src/backend/jit/README index 6271677163a..e2fac8558e8 100644 --- a/src/backend/jit/README +++ b/src/backend/jit/README @@ -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 |