-
```sql
SELECT version() FROM tablename;
```
if the table had 13 rows of data, then 13 rows with versions are returned instead of one as expected
as if there is some kind of error/bug that the `…
-
Subscribe to this issue and stay notified about new [weekly trending repos in TypeScript](https://github.com/trending/typescript?since=weekly)!
-
How's support for FTS?
On https://pglite.dev/repl/ running `SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery;` works, which is cool.
However, running `SELECT t…
-
I am using `pglite` in tandem with `electric`, while also adding a few tables and views.
In my install procedure I have a few occasions where a read query can be made before the objects (tables, vi…
-
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 process, then build it myself?
I ha…
-
Currently state is handled as regular old JavaScript objects. This makes state logic fast, but persistence is handled by writing JSON to a file which can be fraught with race conditions. [Drizzle ORM …
-
Hi does electric sql support geo data, I am currently looking into [PostgreSQL](http://www.postgresql.org/) + [PostGIS](http://postgis.refractions.net/) but I am unsure if the SQLlite supports the ge…
-
Is there a way to use pglite without using JS/TypeScript as the client language? I was thinking since this packages up Postgres into WASM that others could then write bindings for other clients as wel…
-
I want to leverage the template database feature in Postgres to quickly revert my test database to a pristine state between tests. I'm able to create a separate database to serve as the template, but …
-
@samwillis Pglite has been a fantastic transformation for testing, and the speed is incredible compared to Pgmock.
Sadly, I've written a valid plpgsql function that triggers errors in Pglite:
> R…