Lining Pan

Results 25 comments of Lining Pan

I think the problem is that sqlx now cannot infer nullability correctly. To be fair, the sqlite byte code is not considered as part of the API, and not meant...

I though initially CI failed at formatting, and I believe I fixed them. I was waiting for you to trigger CI. Get Outlook for iOS ________________________________ From: Austin Bonander ***@***.***>...

Although the CI pipeline appears to be passing, I'm not 100% certain about the correctness of this patch and the additional memory consumed by the branch state hash table. That...

Is there a way to insert a row only when there’s no conflict and determine if the row is inserted afterwards? This should be possible with `ON CONFLICT DO NOTHING`...

I also ran into this issue. The problem seems to be even if only a single file is provided, we still try to match by extension. https://github.com/apache/arrow-datafusion/blob/0e5f6df2c4fb2d647874102a19c74eaaf7f34d98/datafusion/core/src/datasource/listing/url.rs#L143-L175 If my use...

Hi, NIFTI2 support would be very helpful! Can we add additional intent codes from the HCP pipeline? https://github.com/Washington-University/workbench/blob/master/src/FilesBase/nifti2.h#L33-L49 ```cpp const int32_t NIFTI_INTENT_CONNECTIVITY_UNKNOWN=3000; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE=3001; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_TIME=3002;//CIFTI-1 name const...

I also tried to implement nifti-2 support myself. I took a more aggressive approach and cast nifti-1 and nifti-2 header to a common type derived from nifti-2. The common type...

I ran into this problem when I was trying to save some query results for testing. In addition to testing, a CLI app might want to print output in a...

`BigInt` is not part of the GraphQL spec, and the `Int` type is defined as i32 in the [specification](https://spec.graphql.org/October2021/#sec-Int). If you want to represent integers that do not fit in...

The hardest part for python rust interop is passing correct flags when compiling pyo3, which is typically handled by a build script. The build script calls a python interpreter to...