From 0ecc45df2300f57abdbf0f855274b5f24139313e Mon Sep 17 00:00:00 2001 From: kennytm Date: Wed, 12 Dec 2018 21:28:13 +0800 Subject: [PATCH] sync_diff_inspector: fix a misleading regex example in config.toml --- sync_diff_inspector/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync_diff_inspector/config.toml b/sync_diff_inspector/config.toml index 1d411371d..af427a98c 100644 --- a/sync_diff_inspector/config.toml +++ b/sync_diff_inspector/config.toml @@ -39,7 +39,7 @@ tables = ["test1", "test2", "test3"] # support regular expression, must start with '~'. # for example, this config will check tables with prefix 'test'. -# tables = ["~test*"] +# tables = ["~^test.*"] # schema and table in table-config must be contained in check-tables.