Module pgx::prelude

source ·
Expand description

The PGX prelude includes necessary imports to make extensions work.

Re-exports

Macros

  • Log to Postgres’ fatal log level. This will abort the current Postgres backend connection process.
  • Log to Postgres’ panic log level. This will cause the entire Postgres cluster to crash.
  • If an interrupt is pending (perhaps a user-initiated “cancel query” message to this backend), this will safely abort the current transaction
  • Log to Postgres’ debug1 log level.
  • Log to Postgres’ debug2 log level.
  • Log to Postgres’ debug3 log level.
  • Log to Postgres’ debug4 log level.
  • Log to Postgres’ debug5 log level.
  • A macro for specifying default argument values so they get properly translated to SQL in CREATE FUNCTION statements
  • Sends some kind of message to Postgres, and if it’s a PgLogLevel::ERROR or greater, Postgres’ error handling takes over and, in the case of PgLogLevel::ERROR, aborts the current transaction.
  • Log to Postgres’ error log level. This will abort the current Postgres transaction.
  • Declare SQL to be included in generated extension script.
  • Declare SQL (from a file) to be included in generated extension script.
  • This macro returns the name of the enclosing function. As the internal implementation is based on the std::any::type_name, this macro derives all the limitations of this function.
  • Log to Postgres’ info log level.
  • Log to Postgres’ log log level.
  • A macro for providing SQL names for the returned fields for functions that return a Rust tuple, especially those that return a TableIterator.
  • Log to Postgres’ notice log level.
  • A macro for marking a library compatible with pgx.
  • Log to Postgres’ warning log level.

Structs

  • An array of some type (eg. TEXT[], int[])
  • From the PG docs https://www.postgresql.org/docs/current/datatype-datetime.html#DATATYPE-INTERVAL-INPUT Internally interval values are stored as months, days, and microseconds. This is done because the number of days in a month varies, and a day can have 23 or 25hours if a daylight savings time adjustment is involved. The months and days fields are integers while the microseconds field can store fractional seconds. Because intervals are usually created from constant strings or timestamp subtraction, this storage method works well in most cases…
  • PgTryBuilder is a mechanism to mimic Postgres C macros PG_TRY and PG_CATCH.
  • Wraps a Postgres varlena *, presenting it as if it’s a Rust type of a fixed size.
  • A safe deconstruction of a Postgres pg_sys::RangeType struct.

Enums

Constants

Traits

  • Convert a (pg_sys::Datum, is_null:bool pair into a Rust type
  • Convert a Rust type into a pg_sys::Datum.
  • This trait allows a struct to be a valid subtype for a RangeType

Functions

Type Definitions

Attribute Macros

  • Used with #[pg_operator]. 1 value which is the function name
  • Used with #[pg_operator]. no values
  • Associated macro for #[pg_test] to provide context back to your test framework to indicate that the test system is being initialized
  • Used with #[pg_operator]. 1 value which is the function name
  • Used with #[pg_operator]. no values
  • Used with #[pg_operator]. 1 value which is the function name
  • Used with #[pg_operator]. 1 value which is the operator name itself
  • Declare a pgx::Aggregate implementation on a type as able to used by Postgres as an aggregate.
  • Declare a function as #[pg_extern] to indicate that it can be used by Postgres as a UDF.
  • Declare a function as #[pg_guard] to indicate that it is called from a Postgres extern "C" function so that Rust panic!()s (and Postgres elog(ERROR)s) will be properly handled by pgx
  • Declare a function as #[pg_operator] to indicate that it represents a Postgres operator cargo pgx schema will automatically generate the underlying SQL
  • Declare a Rust module and its contents to be in a schema.
  • #[pg_test] functions are test functions (akin to #[test]), but they run in-process inside Postgres during cargo pgx test.
  • A helper attribute for various contexts.
  • Used with #[pg_operator]. 1 value which is the function name
  • Associated macro for #[pg_extern] or #[macro@pg_operator]. Used to set the SEARCH_PATH option on the CREATE FUNCTION statement.

Derive Macros

  • Generate necessary bindings for using the enum with PostgreSQL.
  • Generate necessary code using the type in operators like == and !=.
  • Derives the GucEnum trait, so that normal Rust enums can be used as a GUC.
  • Generate necessary code for stable hashing the type so it can be used with USING hash indexes.
  • Generate necessary code using the type in operators like >, <, <=, and >=.
  • Generate necessary bindings for using the type with PostgreSQL.