Chris Cleveland

Results 44 issues of Chris Cleveland

The MapBuilder will accept a struct that implements io::Write. This is cool, it means that the fst can be written anywhere. Is it possible for Map::new() to accept a struct...

Have some questions, not sure where else to ask. We're looking at this project for use in one of our systems. 1. Is the lsmtree project maintained or used? Hasn't...

I'm doing an implementation of Swagger 2.0, and Swagger uses JSON Schema to describe not only incoming and outgoing JSON, but also the constraints on any parameters in your REST...

Is it possible to use the GraalVM native compiler to create a binary, and use that as an extension? I asked about this on the Graal Slack quite some time...

question

The code in pgrx-examples/shmem has an issue. Possibly pg_shmem_init!() is missing something? To duplicate the problem: clone pgrx cd pgrx-examples/shmem cargo pgrx run then: ``` shmem=# create extension shmem; CREATE...

I'm getting a strange error when a regex could match the prefix of another regex. Maybe. I just don't know what the problem is. Here's a simplified case: ``` #[derive(Logos,...

question

Is it possible for the lexer to run in different modes, where in one mode something might be recognized, and it in another it would not? For example, when lexing...

question

This *might* not be a bug. It might be that I just can't find the magic syntax. ``` cargo pgrx new foop cd foop cargo pgrx test test tests::pg_test_hello_foop ......

I'd like to be able to match the beginning of the input in a regular expression: `^"-"|" -" // match "-" if it is at the beginning of the input...

I need to serialize SmallVec, which doesn't know about bincode or implement Encode / Decode. When I try this: ``` impl Encode for SmallVec { fn encode(&self, encoder: &mut E)...

enhancement
not-stale
bincode-2