Setup
dolthub/doltgresql:latest (0.57.1) Docker image.
Repro
CREATE EXTENSION IF NOT EXISTS vector;
ERROR: exec: "pg_config": executable file not found in $PATH (errno 1105) (sqlstate HY000)
Why it matters
This is a packaging issue distinct from extension support itself: the native-extension loading path shells out to pg_config, but the official image doesn't include it, so CREATE EXTENSION can never work for container users — presumably the most common way people will trial Doltgres 1.0. Either bundling pg_config (and headers) in the image or failing with a clearer "extensions require X" message would help.
Setup
dolthub/doltgresql:latest(0.57.1) Docker image.Repro
Why it matters
This is a packaging issue distinct from extension support itself: the native-extension loading path shells out to
pg_config, but the official image doesn't include it, soCREATE EXTENSIONcan never work for container users — presumably the most common way people will trial Doltgres 1.0. Either bundlingpg_config(and headers) in the image or failing with a clearer "extensions require X" message would help.