Re-exports§
pub use risingwave_common_metrics as metrics;
pub use risingwave_common_secret as secret;
pub use risingwave_license as license;
Modules§
- acl
Acl
defines all grantable privileges.- array
Array
defines all in-memory representations of vectorized execution framework.- bitmap
- Defines a bitmap, which is used to track which values in an Arrow array are null. This is called a “validity bitmap” in the Arrow documentation. This file is adapted from arrow-rs
- cache
LruCache
implementation port from github.com/facebook/rocksdb. The classLruCache
is thread-safe, because every operation on cache will be protected by a spin lock.- cast
- catalog
- config
- This module defines the structure of the configuration file
risingwave.toml
. - constants
- error
- Re-export
risingwave_error
for easy access. - field_
generator - hash
- jemalloc
- log
- lru
- memory
- monitor
- operator
- opts
- range
- row
- sequence
- session_
config - system_
param - This module defines utilities to work with system parameters ([
PbSystemParams
] inmeta.proto
). - telemetry
- test_
prelude - test_
utils - transaction
- types
- Data types in RisingWave.
- util
- vnode_
mapping
Macros§
- __
recursive_ tracker - Define the tracker for recursion and return it.
- _composite_
data_ types - Data types that have inner fields.
- _range_
frame_ datetime_ data_ types - Date/time
DataType
s supported to beoffset
ofRANGE
frame. - _range_
frame_ numeric_ data_ types - Numeric
DataType
s supported to beoffset
ofRANGE
frame. - _simple_
data_ types - Data types that do not have inner fields.
- bail
- Return early with an error, in any type that can be converted from
an
anyhow::Error
. - bail_
no_ function - Constructs a
NoFunction
and bails out. - bail_
not_ implemented - Constructs a
NotImplemented
and bails out. - dispatch_
array_ builder_ variants - Dispatch the code block to all variants of
ArrayBuilderImpl
. - dispatch_
array_ variants - Dispatch the code block to all variants of
ArrayImpl
. - dispatch_
data_ types - Dispatch the code block to all variants of
DataType
. - dispatch_
scalar_ ref_ variants - Dispatch the code block to all variants of
ScalarRefImpl
. - dispatch_
scalar_ variants - Dispatch the code block to all variants of
ScalarImpl
. - do_
dispatch_ data_ types - Helper macro for generating dispatching code. Internally used by
dispatch_data_types
macros. - do_
dispatch_ variants - Helper macro for generating dispatching code. Internally used by
dispatch_xx_variants
macros. - do_
expand_ alias - Helper macro for expanding type aliases and constants. Internally used by
dispatch_
macros. - enable_
jemalloc - If https://github.com/tikv/jemallocator/issues/22 is resolved, we may inline this
- ensure
- Util macro for generating error when condition check failed.
- ensure_
eq - Util macro to generate error when the two arguments are not equal.
- for_
all_ base_ types DataType
information extracted from PostgreSQLpg_type
- for_
all_ fields_ variants - for_
all_ native_ types for_all_native_types
includes all native variants of our scalar types.- for_
all_ params - Define all system parameters here.
- for_
all_ variants for_all_variants
includes all variants of our type system. If you introduced a new array type (also known as scalar type or physical type), be sure to add a variant here.- git_sha
- key_of
- Convert field name to string.
- must_
match - Match an enum variant and return the internal value.
- no_
function - Constructs a
NoFunction
. - not_
implemented - Constructs a
NotImplemented
. - panic_
if_ debug - Panics if
debug_assertions
is set, otherwise logs a warning. - register_
guarded_ gauge_ vec_ with_ registry - register_
guarded_ histogram_ vec_ with_ registry - register_
guarded_ int_ counter_ vec_ with_ registry - register_
guarded_ int_ gauge_ vec_ with_ registry - register_
guarded_ uint_ gauge_ vec_ with_ registry - schema_
unnamed schema_unnamed
builds aSchema
with the given types, but without names.- try_
match_ expand - Try to match an enum variant and return the internal value.
Constants§
- GIT_SHA
- PG_
VERSION - RW_
VERSION - SERVER_
ENCODING - Shows the server-side character set encoding. At present, this parameter can be shown but not set, because the encoding is determined at database creation time. It is also the default value of
client_encoding
. - SERVER_
VERSION_ NUM - The version of PostgreSQL that Risingwave claims to be.
- STANDARD_
CONFORMING_ STRINGS - see https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-STANDARD-CONFORMING-STRINGS
- UNKNOWN_
GIT_ SHA - Placeholder for unknown git sha.