-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
descs: move uncommitted descriptors to their own layer
Previously, uncommitted descriptors were maintained as part of the kvDescriptors layer in descs.Collection. This commit moves them to their own layer, which helps to further unify the code paths for descriptor lookups in the Collection. Pre-txn validation has also been improved, reducing the number of round trips to storage. Release note: None
- Loading branch information
Marius Posta
committed
Aug 18, 2021
1 parent
cee3378
commit b94d1f2
Showing
12 changed files
with
666 additions
and
363 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
36 changes: 18 additions & 18 deletions
36
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 | ||
23,AlterPrimaryRegion/alter_empty_database_alter_primary_region | ||
24,AlterPrimaryRegion/alter_empty_database_set_initial_primary_region | ||
23,AlterPrimaryRegion/alter_populated_database_alter_primary_region | ||
25,AlterPrimaryRegion/alter_populated_database_set_initial_primary_region | ||
22,AlterRegions/alter_empty_database_add_region | ||
23,AlterRegions/alter_empty_database_drop_region | ||
22,AlterRegions/alter_populated_database_add_region | ||
23,AlterRegions/alter_populated_database_drop_region | ||
23,AlterSurvivalGoals/alter_empty_database_from_region_to_zone | ||
23,AlterSurvivalGoals/alter_empty_database_from_zone_to_region | ||
43,AlterSurvivalGoals/alter_populated_database_from_region_to_zone | ||
43,AlterSurvivalGoals/alter_populated_database_from_zone_to_region | ||
24,AlterTableLocality/alter_from_global_to_rbr | ||
26,AlterTableLocality/alter_from_global_to_regional_by_table | ||
22,AlterTableLocality/alter_from_rbr_to_global | ||
22,AlterTableLocality/alter_from_rbr_to_regional_by_table | ||
26,AlterTableLocality/alter_from_regional_by_table_to_global | ||
24,AlterTableLocality/alter_from_regional_by_table_to_rbr | ||
21,AlterPrimaryRegion/alter_empty_database_alter_primary_region | ||
22,AlterPrimaryRegion/alter_empty_database_set_initial_primary_region | ||
21,AlterPrimaryRegion/alter_populated_database_alter_primary_region | ||
23,AlterPrimaryRegion/alter_populated_database_set_initial_primary_region | ||
20,AlterRegions/alter_empty_database_add_region | ||
21,AlterRegions/alter_empty_database_drop_region | ||
20,AlterRegions/alter_populated_database_add_region | ||
21,AlterRegions/alter_populated_database_drop_region | ||
21,AlterSurvivalGoals/alter_empty_database_from_region_to_zone | ||
21,AlterSurvivalGoals/alter_empty_database_from_zone_to_region | ||
41,AlterSurvivalGoals/alter_populated_database_from_region_to_zone | ||
41,AlterSurvivalGoals/alter_populated_database_from_zone_to_region | ||
22,AlterTableLocality/alter_from_global_to_rbr | ||
24,AlterTableLocality/alter_from_global_to_regional_by_table | ||
20,AlterTableLocality/alter_from_rbr_to_global | ||
20,AlterTableLocality/alter_from_rbr_to_regional_by_table | ||
24,AlterTableLocality/alter_from_regional_by_table_to_global | ||
22,AlterTableLocality/alter_from_regional_by_table_to_rbr |
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
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
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
Oops, something went wrong.