jeff-davis
jeff-davis
DESCRIPTION: PR description that will go into the change log, up to 78 characters
WIP draft. We likely don't even want this change. DESCRIPTION: PR description that will go into the change log, up to 78 characters
It seems that we began similar projects at similar times. I started on https://github.com/jeff-davis/postgres-extension.rs just recently and did not notice your project. A few comments: * It might make sense...
``` CREATE TABLE test(i int) USING columnar; SELECT alter_columnar_table_set('test'::regclass, compression=>'lz4'); INSERT INTO test VALUES(1); VACUUM VERBOSE test; ``` ``` INFO: statistics for "test": storage id: 10000000006 total file size: 24576,...
It seems that the `#[cfg(feature="postgrestd")]` implementation of `pg_try` turns it into a no-op, which seems to be done so the guard doesn't inject additional `setjmp` calls (for performance reasons, as...
``` create or replace function fn1(i int) returns int strict language plrust as $$ [code] notice!("{}", "fn1 started"); let cmd = format!("select fn2({})", i); Spi::execute(|client| { client.select(&cmd, None, None); });...
``` create or replace procedure p1() language plrust as $$ [code] Some(()) $$; CREATE PROCEDURE call p1(); ERROR: returned Option was NULL ```
Allow columnar to make use of parallel query, so that different backends read different stripes.
Hi, I see that this has gone a while without update, and I put some work into getting this modernized on stable rust, and uploaded to crates.io. If you are...