Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue#1597: add rocksdb dependency to pstd #1599

Merged
merged 2 commits into from
Jun 7, 2023
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
1 change: 1 addition & 0 deletions include/pika_data_distribution.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#ifndef PIKA_DATA_DISTRIBUTION_H_
#define PIKA_DATA_DISTRIBUTION_H_

#include <cstdint>
#include "pstd/include/pstd_status.h"

// polynomial reserved Crc32 magic num
A2ureStone marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
1 change: 1 addition & 0 deletions src/pstd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ aux_source_directory(./src DIR_SRCS)
add_library(pstd STATIC ${DIR_SRCS})

add_dependencies(pstd
rocksdb
glog
gflags
fmt
A2ureStone marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
1 change: 1 addition & 0 deletions src/pstd/include/random.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define __PSTD_INCLUDE_RANDOM_H__

#include <ctime>
#include <cstdint>

namespace pstd {

A2ureStone marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
1 change: 1 addition & 0 deletions src/pstd/src/pstd_status.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// found in the LICENSE file. See the AUTHORS file for names of contributors.

#include "pstd/include/pstd_status.h"
#include <cstdint>
#include <cstdio>

namespace pstd {
Expand Down
1 change: 1 addition & 0 deletions src/pstd/src/pstd_string.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <cstdint>

#include <algorithm>

Expand Down
3 changes: 2 additions & 1 deletion src/storage/src/redis_hyperloglog.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
#ifndef SRC_REDIS_HYPERLOGLOG_H_
#define SRC_REDIS_HYPERLOGLOG_H_

#include <cstdint>
#include <iostream>
#include <string>
#include <memory>
#include <string>

namespace storage {

Expand Down