forked from facebook/rocksdb
-
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.
Merge commit '6349da612bd26bbf338cbce4601de29ffe1a1f1c' of github.com…
…:facebook/rocksdb into upgrade-7.7
- Loading branch information
Showing
169 changed files
with
6,448 additions
and
1,460 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,3 +96,13 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
- uses: "./.github/actions/windows-build-steps" | ||
build-linux-arm-test-full: | ||
if: ${{ github.repository_owner == 'facebook' }} | ||
runs-on: | ||
labels: 4-core-ubuntu-arm | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: "./.github/actions/pre-steps" | ||
- run: sudo apt-get update && sudo apt-get install -y build-essential libgflags-dev | ||
- run: make V=1 J=4 -j4 check | ||
- uses: "./.github/actions/post-steps" |
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 |
---|---|---|
|
@@ -607,3 +607,13 @@ jobs: | |
with: | ||
name: maven-site | ||
path: "${{ github.workspace }}/java/target/site" | ||
build-linux-arm: | ||
if: ${{ github.repository_owner == 'facebook' }} | ||
runs-on: | ||
labels: 4-core-ubuntu-arm | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: "./.github/actions/pre-steps" | ||
- run: sudo apt-get update && sudo apt-get install -y build-essential | ||
- run: ROCKSDBTESTS_PLATFORM_DEPENDENT=only make V=1 J=4 -j4 all_but_some_tests check_some | ||
- uses: "./.github/actions/post-steps" |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Meta Platforms, Inc. and affiliates. | ||
// This source code is licensed under both the GPLv2 (found in the | ||
// COPYING file in the root directory) and Apache 2.0 License | ||
// (found in the LICENSE.Apache file in the root directory). | ||
|
||
#include "db/attribute_group_iterator_impl.h" | ||
|
||
namespace ROCKSDB_NAMESPACE { | ||
|
||
const AttributeGroups kNoAttributeGroups; | ||
const IteratorAttributeGroups kNoIteratorAttributeGroups; | ||
|
||
void AttributeGroupIteratorImpl::AddToAttributeGroups( | ||
const autovector<MultiCfIteratorInfo>& items) { | ||
for (const auto& item : items) { | ||
attribute_groups_.emplace_back(item.cfh, &item.iterator->columns()); | ||
} | ||
} | ||
|
||
} // namespace ROCKSDB_NAMESPACE |
Oops, something went wrong.