forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
catkv: replace StoredCatalog with cached CatalogReader
This commit leverages the previous one and uses nstree.Catalog as the data structure for caching all catalog data read by catkv.CatalogReader. The StoredCatalog object is removed in favor of a cached CatalogReader implementation. This results in more consistent behavior when reading descriptors, comments and zone configs. Informs cockroachdb#88571. Release note: None
- Loading branch information
Marius Posta
committed
Dec 8, 2022
1 parent
d651047
commit d1fba4c
Showing
18 changed files
with
1,078 additions
and
1,104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
pkg/ccl/benchccl/rttanalysisccl/testdata/benchmark_expectations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
exp,benchmark | ||
11,AlterPrimaryRegion/alter_empty_database_alter_primary_region | ||
14,AlterPrimaryRegion/alter_empty_database_set_initial_primary_region | ||
11,AlterPrimaryRegion/alter_populated_database_alter_primary_region | ||
15,AlterPrimaryRegion/alter_populated_database_set_initial_primary_region | ||
11,AlterRegions/alter_empty_database_add_region | ||
13,AlterRegions/alter_empty_database_drop_region | ||
11,AlterRegions/alter_populated_database_add_region | ||
13,AlterRegions/alter_populated_database_drop_region | ||
10,AlterPrimaryRegion/alter_empty_database_alter_primary_region | ||
13,AlterPrimaryRegion/alter_empty_database_set_initial_primary_region | ||
10,AlterPrimaryRegion/alter_populated_database_alter_primary_region | ||
14,AlterPrimaryRegion/alter_populated_database_set_initial_primary_region | ||
10,AlterRegions/alter_empty_database_add_region | ||
12,AlterRegions/alter_empty_database_drop_region | ||
10,AlterRegions/alter_populated_database_add_region | ||
12,AlterRegions/alter_populated_database_drop_region | ||
11,AlterSurvivalGoals/alter_empty_database_from_region_to_zone | ||
11,AlterSurvivalGoals/alter_empty_database_from_zone_to_region | ||
21,AlterSurvivalGoals/alter_populated_database_from_region_to_zone | ||
21,AlterSurvivalGoals/alter_populated_database_from_zone_to_region | ||
14,AlterTableLocality/alter_from_global_to_rbr | ||
12,AlterTableLocality/alter_from_global_to_regional_by_table | ||
10,AlterTableLocality/alter_from_rbr_to_global | ||
10,AlterTableLocality/alter_from_rbr_to_regional_by_table | ||
12,AlterTableLocality/alter_from_regional_by_table_to_global | ||
14,AlterTableLocality/alter_from_regional_by_table_to_rbr | ||
12,AlterTableLocality/alter_from_global_to_rbr | ||
11,AlterTableLocality/alter_from_global_to_regional_by_table | ||
8,AlterTableLocality/alter_from_rbr_to_global | ||
8,AlterTableLocality/alter_from_rbr_to_regional_by_table | ||
11,AlterTableLocality/alter_from_regional_by_table_to_global | ||
12,AlterTableLocality/alter_from_regional_by_table_to_rbr |
Oops, something went wrong.