amokio

Results 6 comments of amokio

> You can convert them into Vec/Map and then to Value. Not really understanding, any code snippet?

> Here's an example how to convert a Cassandra list to a Vec: https://github.com/krojew/cdrs-tokio/blob/master/cdrs-tokio/tests/collection_types.rs#L76 > > You can do similar thing to a Map. But the problem is the row...

> Is there anything preventing you from calling `as_r_rust()` on the column data? No, but when I declare the new variable like HashMap, I have to provide type. But assume...

> `ColTypeOptionValue` contains the information about the underlying types for collections. You can use that to deserialize appropriate values and move them into `serde_json::Value`. Yes, currently using this, but not...

@krojew , any idea ? ```rust let v: ColTypeOptionValue = col.clone().col_type.value.expect(""); let v = match v { ColTypeOptionValue::CMap(key, v) => { println!("{:#?} {:#?}", key.id, v); // how to use key.id...

@blackbeam i believe he is talking mysql_async is not supporting chrono feature flag. The current workaround is to install mysql_common with chrono feature. Can you support the chrono feature flag...