-
-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
postgresql: support JIT compilation for version >= 11
PostgreSQL (from 11 onwards AFAICT) supports JIT compilation of (frequently used) queries. This should provide a speedup to some queries where operations such as comparing rows is a bottleneck. For JIT support we have to build PostgreSQL with with the --with-llvm config flag and pass both clang and llvm into the build environment. PostPostgreSQL then calls llvm-config to obtain the required compiler flags.
- Loading branch information
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters