-
Notifications
You must be signed in to change notification settings - Fork 436
feat(bigtable): add expiration logic to query plan implementation #15647
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
Changes from 2 commits
79c9d97
f7aed2a
ae68a89
a33464a
49b884f
d2a0815
bc662fc
d6b4bc3
8bd408a
36c2a5a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,8 +37,10 @@ class QueryPlan : public std::enable_shared_from_this<QueryPlan> { | |
| static std::shared_ptr<QueryPlan> Create( | ||
| CompletionQueue cq, google::bigtable::v2::PrepareQueryResponse response, | ||
| RefreshFn fn) { | ||
| return std::shared_ptr<QueryPlan>( | ||
| auto plan = std::shared_ptr<QueryPlan>( | ||
|
||
| new QueryPlan(std::move(cq), std::move(response), std::move(fn))); | ||
mpeddada1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| plan->Initialize(); | ||
| return plan; | ||
| } | ||
|
|
||
| // Accessor for the prepared_query field in response_. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.