├── .gitignore ├── README.md ├── config.go ├── fakegres.go ├── go.mod ├── go.sum ├── pgEngine.go └── pgServer.go /.gitignore: -------------------------------------------------------------------------------- 1 | fakegres-fdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/config.go -------------------------------------------------------------------------------- /fakegres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/fakegres.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/go.sum -------------------------------------------------------------------------------- /pgEngine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/pgEngine.go -------------------------------------------------------------------------------- /pgServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoid-archive/fakegres-fdb/HEAD/pgServer.go --------------------------------------------------------------------------------