Chris Cleveland

Results 94 comments of Chris Cleveland

I know it's been two years, but I can look at this. I just added some support for arrays directly, so if your column is an array type, you may...

Could you give an example of the problem that this PR fixes?

Is this the same issue as #55 ? I could put a little hack into the code to deal with this one particular case. Would prefer to avoid that, obviously....

As with the other PR, it's helpful to see an example of the problem. What code isn't working, and what error message do you get?

I'm open to suggestions on how to fix.

Two choices: 1. Use a JDBC proxy: https://vladmihalcea.com/the-best-way-to-log-jdbc-statements/ 2. Modify norm source. It should be pretty easy. I would insert a logging statement in two places, in Query.execute() just above...

@Hoverbear Yes, this does work. You have to do two things. First, you have to create a #[pg_extern] function outside the test module so that you have a way of...

I had no idea this existed: https://docs.rs/pgrx-macros/latest/pgrx_macros/ Really valuable. Should have a link to it in the main readme.

I'm getting the same error. When I open up the generated file in my IDE, CLion, I see: ``` fn token_to_symbol(&self, token_index: usize, token: Self::Token) -> Self::Symbol { __token_to_symbol(token_index, token,...

@dolik-rce This isn't a suggestion to import data being parsed. It's a suggestion to import specs into the parser itself while the parser is being generated. For example, imagine that...