bear9628
No user record in our sample, but bear9628 has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but bear9628 has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
Oh wow, that is really cool.
You can get an overview of the platform in this Post: https://xata.io/blog/serverless-postgres-platform#the-platfo... Zombodb is a really cool project, but no, we don't use it. We use logical replication and triggers to…
Edit: I wasn't finished before submitting the response by accident :) > > > If we were to provide zig consumable ways of creating the struct from C headers, would that help? > > Yes, that would be awesome. > I don't…
> I haven't worked with pgzx, but it's possible that memory management is easier. Zig uses memory arenas, and so does Postgres. If one can map directly to the other, it would be a huge win. Yes. This was indeed a great…
Hehe :) I also have WASM in mind when thinking about future TLE support :)
One of the reasons why we are using Zig is that we can consume the C API mostly as is. When importing the C headers Zig translates the C headers into Zig declarations. Unfortunately this is not always possible for C…
No TLE support is a not a goal. Languages/extensions in Postgres should only be marked as trusted if you can guarantee that they do not access Postgres internals or even the file filesystem. With Zig and in pgzx in…