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
We need information on the environment and the method used for your issue. Please share them with us.
Below are the general steps for building an FDW:
Build and install PostgreSQL:
Prepare source code of PostgreSQL
Build and install PostgreSQL
Move to postgresql directory
./configure --prefix=$(pwd)/install
make && make install
Build and install FDW in two ways: inside or outside source tree of PostgreSQL
First, prepare requirement for building FDW - refer https://github.com/pgspider/parquet_s3_fdw#installation
And then, you can use either of the following methods to build FDW:
Method 1. In the source tree of PostgreSQL:
Move to contrib folder of postgresql
Clone source code FDW
make install
Method 2. Outside the source tree of PostgreSQL:
Clone source code FDW
make install USE_PGXS=1 PG_CONFIG=/path/to/pg_config
when I clone , and then make install, error:
Makefile:48: ../../src/Makefile.global: No such file or directory
my pc is Mac M1, and postgres is v16,
why? and how to solve it, thanks!
The text was updated successfully, but these errors were encountered: