You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to implement AsyncMigrate for a custom SQL target, this function is needed to construct Migration types. This is specifically required by the AsyncQuery::query function.
At the moment, this API is pub(crate), requiring an unsafe transmute to construct any Migration type outside of refinery-core crate.
@jxs Sure, it was simply more expedient for my immediate needs to implement it outside. It's also a bit hacky IMO. I can open a PR here to add support.
In order to implement
AsyncMigrate
for a custom SQL target, this function is needed to constructMigration
types. This is specifically required by theAsyncQuery::query
function.At the moment, this API is
pub(crate)
, requiring an unsafe transmute to construct anyMigration
type outside ofrefinery-core
crate.See example in
klickhouse
crate: https://github.com/Protryon/klickhouse/blob/master/klickhouse/src/migrate.rs#L58The text was updated successfully, but these errors were encountered: