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
pgx 0.5.0 adds a prelude. Instead of importing pgx::* everywhere, we can now do use pgx::prelude::* instead and not import everything (importing everything pollutes the scope of the importer and makes it less clear where an item came from).
We should update Toolkit to use the prelude everywhere and remove all glob imports of pgx::*.
The text was updated successfully, but these errors were encountered:
pgx 0.6.0 will stop supporting `pgx::Datum`. `pg_sys::Datum` works with both
the current release and the upcoming 0.6.0 release. This also gets us closer
to using the pgx prelude (#586).
618: Use pg_sys::Datum instead of pgx::Datum r=Smittyvb a=Smittyvb
pgx 0.6.0 will stop supporting the `pgx::Datum` import path. `pg_sys::Datum` works with both the current release and the upcoming 0.6.0 release.
This also gets us closer to [using the pgx prelude](#586).
Co-authored-by: Smitty <[email protected]>
pgx 0.5.0 adds a prelude. Instead of importing
pgx::*
everywhere, we can now douse pgx::prelude::*
instead and not import everything (importing everything pollutes the scope of the importer and makes it less clear where an item came from).We should update Toolkit to use the prelude everywhere and remove all glob imports of
pgx::*
.The text was updated successfully, but these errors were encountered: