Tudor Zaharia
Tudor Zaharia
> const result = useLiveQuery(`SELECT * FROM items ORDER BY embedding '[3,1,2]' LIMIT 5;`); I guess the issue is with `useLiveQuery` possibly in combination with `pgvector` because we have CI...
@piyushagarwal73 Thank you for the bug report. Could you please make a minimal reproducible example, that would save a lot of time.
Thank you for this @itsWill ! One thing to try out would be to do the same insert directly with PGlite (ie without the `pglite-server`) and see if it still...
Thank you @itsWill this helps! Will try to address it in a timely manner.
**Ideally** the final binary will contain `libstdc++` such that the MAIN_MODULE (ie to `pglite.wasm`) wouldn't need to contain it. ``` -Wl,--whole-archive -lstdc++ -Wl,--no-whole-archive ``` Is this possible with emscripten?
You can now build the project the usual way `pnpm build:all` and run the tests. You can also run only the `postgis` tests by ` cd packages/pglite` and then `vitest...
> thanks. hoping this will be released too.. We are looking for help with this one as we're busy with other things at the moment. The bulk of the work...
> Tests in `tests/contrib/pgcrypto.test.js` pass in https://github.com/loredanacirstea/pglite/tree/tdrz/fe-try-pgcrypto I created some WASM import shims that pgcrypto tries to import during init. Nice, thank you for this! > that pgcrypto tries to...
> @tdrz if you consider that @loredanacirstea help was not trivial: you will let her know what you need from her version to accept her eventual PR - for some...
@loredanacirstea Your contribution makes `pgcrypto` work with PGlite! Thank you! Using your code, I took a different route of: 1. Disabling threads in all dependencies (see `postgres-pglite/pglite-wasm/builder/Dockerfile` 2. Adding the...