Chris Cleveland

Results 94 comments of Chris Cleveland

Will this work? ``` use crate::pg_sys::Datum; #[pg_extern] pub fn foo(rec: Datum) { // extract info from rec here } ``` This compiles, but chokes during schema generation. Is there a...

See #326 Yes, this would be very helpful. The zero-copy goal is also important. I would probably not use an implementation that merely copied a HeapTuple into a Map except...

The only documentation I can find on what a suite is is here: https://github.com/graalvm/mx. It's not enough for me to create one and make it work. Is there anything that...

I get it now. Suite.py is like a Maven pom. Still would be helpful to have reference docs on the format. All I was trying to do is "mx ideinit"...

Yes, by coincidence I ran into the same problem yesterday. My code assumed that generated values would only be int or long, which is obviously wrong. I need to redesign...

I actually use the Java solution in my apps because it solves a problem with batch inserts. The postgres jdbc driver does not return generated ids in the correct order...

Are you using the most recent version of Norm? 1.0.4. There were a few changes to the way generated values are returned. Try it with just @GeneratedValue. If that doesn't...

I'm not sure -- haven't tested H2 in a while. But I've started to get away from using createTable() in my own code. It's better to just use straight sql:...

You did a clean recompile under Java 8 and it actually worked? I'll have to look into that. Java 8 went end-of-life quite a while ago, but now it appears...

What's not working? Is this a createTable() problem, or something else? Is there an error message?