Category "32-bit"

PostgreSQL version compatible with Windows 7 32 bit

I have tried to install PostgreSQL 10.6 on Win 7 SP1 32 bit and I got following error after trying to run pgadmin4: "postgresql application server could not be

C++ Union Array differs in 32/64 bits

My code: union FIELD { int n; char c; const char *s; FIELD(){} FIELD(int v){ n = v; } FIELD(char v){ c = v; } FIELD(const char* v){