You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the pg_hint_plan adapter doc (overview, installation, usage) to the
Eco Component Adaption section, in both English and Chinese.
Closes#250
Signed-off-by: jokerzsd <2701819133@qq.com>
pg_hint_plan is a PostgreSQL extension that lets you control the execution plan chosen by the optimizer using special comments called "hints" embedded in SQL statements. It is fully compatible with IvorySQL.
9
+
10
+
== Installation
11
+
12
+
=== Prerequisites
13
+
pg_hint_plan must be loaded at server start. Add it to `shared_preload_libraries` in `postgresql.conf`:
14
+
15
+
[literal]
16
+
----
17
+
shared_preload_libraries = 'pg_hint_plan'
18
+
----
19
+
20
+
=== Source Code Installation
21
+
22
+
[NOTE]
23
+
Please ensure that **IvorySQL {ivorysql-version} or above** is installed and `pg_config` is available in `PATH`.
0 commit comments