-
Notifications
You must be signed in to change notification settings - Fork 409
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
[flash-365] support db filters #164
Conversation
Two config files to change under tics repo: |
dbms/src/Debug/MockTiDB.h
Outdated
@@ -95,6 +100,8 @@ class MockTiDB : public ext::singleton<MockTiDB> | |||
|
|||
Int64 getVersion() { return version; } | |||
|
|||
std::vector<String> getTableNames(const String & db_name); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use void traverseTables(std::function<void(TablePtr)> f)
instead of making new function.
./run-integration-tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…d tables (pingcap#164) Signed-off-by: Wish <[email protected]>
No description provided.