timescaledb-toolkit
timescaledb-toolkit copied to clipboard
use pgx::prelude::* instead of pgx::*
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::*
.