postgresql-embedded
postgresql-embedded copied to clipboard
Embedded PostgreSQL Server
I am having difficulties with running the embedded version of postgres from within my test suit. Here is the error I am getting: ``` Download Version{10.3-1}:Linux:B64 DONE Extract /root/.embedpostgresql/postgresql-10.3-1-linux-x64-binaries.tar.gz START...
I've upgraded to 2.5 (=PostgreSQL 10). But it does not work on Travis CI(Linux). See https://travis-ci.org/kazuki43zoo/mybatis-3/jobs/299145674#L3460-L3538 Note: 2.5 with PostgreSQL 9.6.5(`new EmbeddedPostgres(Version.V9_6_5)`) work fine.
Hi, Looks like by default, the timezone of the embedded PG server, on startup, is the System's default timezone, which in my case is EST. Is it possible to configure...
The default directory where the postgres binary is extracted is not deleted on exit despite of the following line: https://github.com/yandex-qatools/postgresql-embedded/blob/a47e90f5da76a8bc21bb4ce946e8706373f451b6/src/main/java/ru/yandex/qatools/embed/postgresql/ext/SubdirTempDir.java#L27 [File#deleteOnExit()](https://docs.oracle.com/javase/8/docs/api/java/io/File.html#deleteOnExit--) documentation refers to [File#delete()](https://docs.oracle.com/javase/8/docs/api/java/io/File.html#delete--) and the latter says: >Deletes...
Currently it's not possible to check an error (exit code) of a postgres process command. The problem ist the code in PostgresProcess.runCmd returns a String returned by "logWatch.getOutput()". But the...
Currently the order from appending the additional optional command line arguments in PostgresProcess.restoreFromFile is wrong. The filepath / -name of the "pg_restore" command must be located as last param (as...
There is currently no possibility to specify additional arguments to the pg_dump command (for example to specify the export format by "--format=format"). This issue belongs to all PostgresProcess.export methods. An...
ownload PRODUCTION:Linux:B64 DownloadSize: 145452793 15:18:50Download PRODUCTION:Linux:B64 0% Download PRODUCTION:Linux:B64 0% 1% 2% 1% 3% 2% 3% 4% 4% 5% 5% 6% 6% 7% 7% 8% 8% 9% 9% 10% 10%...
Related to my previous question. As I plan to do some hpc benchmarks with extension I also would like to disable TCP stack, or additionally enable Unix Sockets directory(ies) to...
I am interested in doing PostgreSQL laying on RAM disk with timescaleDB extension some benchmarks against Chronicle Map (off heap key value store) for timeseries data. Can I load custom...