Skip to content

Commit

Permalink
Fix build on ubuntu and gcc 11
Browse files Browse the repository at this point in the history
  • Loading branch information
kgpai committed Mar 20, 2024
1 parent 0b4b6e8 commit 53dd609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: "Scheduled Fuzzer Jobs"
name: "Scheduled Fuzzer Jobs Test"

on:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion velox/vector/arrow/tests/ArrowBridgeArrayTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ class ArrowBridgeArrayImportTest : public ArrowBridgeArrayExportTest {
testArrowImport<double>("g", {-99.9, 4.3, 31.1, 129.11, -12});
testArrowImport<float>("f", {-99.9, 4.3, 31.1, 129.11, -12});

for (const std::string& tsString : {"tss:", "tsm:", "tsu:", "tsn:"}) {
for (const std::string tsString : {"tss:", "tsm:", "tsu:", "tsn:"}) {
testArrowImport<Timestamp, int64_t>(
tsString.data(), {0, std::nullopt, Timestamp::kMaxSeconds});
}
Expand Down

0 comments on commit 53dd609

Please sign in to comment.