Artem Chistyakov

Results 7 comments of Artem Chistyakov

Since #168 is closed, I’ll post my comment here. The introduced fix seems to be incompatible with ActiveRecord versions prior to 4.0 because it makes a use of the recently...

No plans to do this yet. I don’t think there’s enough demand :) I’ll keep the issue open though. If enough people need this, we can figure something out.

Thanks @mcint! I’m traveling right now, but I should be able to take a closer look some time later this week.

I ran into the same bug recently. I found that you can _sometimes_ work around the issue by adding extraneous let bindings. For example, here’s an Ellie that demonstrates two...

I agree that it looks like it could be solved by adding more polymorphism into compiler, i.e. dispatch based on platform’s supported features (GCC back-end probably does something similar). However...

@gwenn yes, in the prototype I’m running: ```rust let conn = unsafe { Connection::from_handle(db.handle()).unwrap() } ``` and then: ```rust conn.execute(format!("CREATE TABLE {basename}_index (filename TEXT PRIMARY KEY, metadata TEXT)"), ())?; ```...

@gwenn, I’m a very casual Rust user and don’t have an in-depth understanding of rusqlite API design, but perhaps there’s a world where `VTabConnection` has all of the same querying...