Skip to content

Commit b11b3a5

Browse files
committed
chore: configure bazel and makefile
1 parent df1873a commit b11b3a5

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

google/cloud/bigtable/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ add_library(
240240
polling_policy.h
241241
prepared_query.cc
242242
prepared_query.h
243-
query.cc
244243
query_row.cc
245244
query_row.h
246245
read_modify_write_rule.h
@@ -442,6 +441,7 @@ if (BUILD_TESTING)
442441
app_profile_config_test.cc
443442
async_read_stream_test.cc
444443
bigtable_version_test.cc
444+
bound_query_test.cc
445445
bytes_test.cc
446446
cell_test.cc
447447
client_options_test.cc
@@ -499,8 +499,8 @@ if (BUILD_TESTING)
499499
mutation_batcher_test.cc
500500
mutations_test.cc
501501
polling_policy_test.cc
502+
prepared_query_test.cc
502503
query_row_test.cc
503-
query_test.cc
504504
read_modify_write_rule_test.cc
505505
row_range_test.cc
506506
row_reader_test.cc

google/cloud/bigtable/bound_query_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
// limitations under the License.
1414

1515
#include "google/cloud/bigtable/bound_query.h"
16+
#include "google/cloud/bigtable/prepared_query.h"
17+
#include "google/cloud/bigtable/sql_statement.h"
1618
#include "google/cloud/bigtable/value.h"
1719
#include "google/cloud/testing_util/status_matchers.h"
1820
#include <algorithm>

google/cloud/bigtable/google_cloud_cpp_bigtable.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ google_cloud_cpp_bigtable_srcs = [
231231
"mutations.cc",
232232
"polling_policy.cc",
233233
"prepared_query.cc",
234-
"query.cc",
235234
"query_row.cc",
236235
"resource_names.cc",
237236
"row_range.cc",

google/cloud/bigtable/prepared_query.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include "google/cloud/bigtable/bound_query.h"
1919
#include "google/cloud/bigtable/instance_resource.h"
2020
#include "google/cloud/bigtable/internal/query_plan.h"
21+
#include "google/cloud/bigtable/sql_statement.h"
2122
#include "google/cloud/bigtable/value.h"
2223
#include "google/cloud/bigtable/version.h"
2324
#include "google/cloud/completion_queue.h"

google/cloud/bigtable/prepared_query_test.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "google/cloud/bigtable/query.h"
15+
#include "google/cloud/bigtable/prepared_query.h"
16+
#include "google/cloud/bigtable/sql_statement.h"
1617
#include "google/cloud/bigtable/value.h"
1718
#include "google/cloud/testing_util/status_matchers.h"
1819
#include <algorithm>

0 commit comments

Comments
 (0)