Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16,278 changes: 53 additions & 16,225 deletions src/catalog/src/builtin.rs

Large diffs are not rendered by default.

511 changes: 511 additions & 0 deletions src/catalog/src/builtin/information_schema.rs

Large diffs are not rendered by default.

2,993 changes: 2,993 additions & 0 deletions src/catalog/src/builtin/mz_catalog.rs

Large diffs are not rendered by default.

7,671 changes: 7,671 additions & 0 deletions src/catalog/src/builtin/mz_internal.rs

Large diffs are not rendered by default.

2,557 changes: 2,557 additions & 0 deletions src/catalog/src/builtin/mz_introspection.rs

Large diffs are not rendered by default.

2,567 changes: 2,567 additions & 0 deletions src/catalog/src/builtin/pg_catalog.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/compute-client/src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl LogVariant {
///
/// This types need to agree with the values that are produced
/// in `logging::compute::construct` and with the description in
/// `catalog/src/builtin.rs`.
/// `catalog/src/builtin/mz_introspection.rs`.
pub fn desc(&self) -> RelationDesc {
match self {
LogVariant::Timely(TimelyLog::Operates) => RelationDesc::builder()
Expand Down
4 changes: 2 additions & 2 deletions src/environmentd/tests/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3760,7 +3760,7 @@ async fn test_cancel_linearize_read_then_writes() {
handle.await;
}

// Test that builtin objects are created in the schemas they advertise in builtin.rs.
// Test that builtin objects are created in the schemas they advertise in the builtin submodules.
#[mz_ore::test(tokio::test(flavor = "multi_thread", worker_threads = 1))]
#[cfg_attr(miri, ignore)] // too slow
async fn test_builtin_schemas() {
Expand Down Expand Up @@ -3795,7 +3795,7 @@ async fn test_builtin_schemas() {
assert_eq!(
builtin_schema,
Some(&schema.as_str()),
"wrong schema for {name}, builtin.rs has {builtin_schema:?}, database has {schema}"
"wrong schema for {name}, builtin submodules have {builtin_schema:?}, database has {schema}"
);
}
}
Expand Down
Loading