pglite icon indicating copy to clipboard operation
pglite copied to clipboard

Lightweight WASM Postgres with real-time, reactive bindings.

Results 126 pglite issues
Sort by recently updated
recently updated
newest added

Hi I was wondering if this supported react native

enhancement
wasi

We could store the db to s3, or other places

Each time I try to use the `IndexedDb` I get this error. ```bash this.program: could not access the server configuration file "/pgdata/postgresql.conf": No such file or directory ``` ![image](https://github.com/electric-sql/pglite/assets/7119315/46aeafdb-c173-4f1c-918a-2f8952145391) This...

Lets say I have a few extensions that the pglite repo doesn't know about, will the expected workflow be to fork pglite, add those extensions as part of the build...

This can be useful when using pglite with code that already has its own parsing logic.

```JS const client = new PGlite(); await client.transaction(async (tx) => { await tx.query('select 1'); await client.query('select 1'); // process just exits without any errors }) ``` Is this an intended...

Attempting to change column type throws error `expected one dependency record for TOAST table, found 4` Reproduction: ```js import { PGlite } from '@electric-sql/pglite' const db = new PGlite() await...

Add config option for where to find the WASM file and share dir bundle. Needed for use in web extensions, see https://discord.com/channels/933657521581858818/1212676471588520006/1231642094993412169

Hey, it's me again. 😄 `execProtocol` is not checking if the database is ready, which triggers this error when called externally to send wire protocol messages: > TypeError: undefined is...

When attempting to launch PGLite with the specified file path, I encounter an error. However, if PGLite is run in memory, the error does not occur. OS: macOS, Runtime: bun....