-
Notifications
You must be signed in to change notification settings - Fork 197
Wildcard must represent zero or more characters #790
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
Conversation
Hi @DmitryFurs Thank you for your contribution to the project. MC-31138 was created to process it. |
@@ -144,9 +144,6 @@ | |||
<ignore> | |||
<document>catalog_category_anc_products_index_tmp</document> | |||
</ignore> | |||
<ignore> | |||
<document>catalog_category_flat_cl</document> | |||
</ignore> |
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.
Covered by catalog_category_flat*
rule
@@ -156,9 +153,6 @@ | |||
<ignore> | |||
<document>catalog_product_enabled_index</document> | |||
</ignore> | |||
<ignore> | |||
<document>catalog_product_flat_cl</document> | |||
</ignore> |
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.
Covered by catalog_product_flat*
rule
@@ -459,9 +453,6 @@ | |||
<ignore> | |||
<document>catalog_category_flat*</document> | |||
</ignore> | |||
<ignore> | |||
<document>catalog_category_flat_store_*</document> | |||
</ignore> |
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.
Covered by catalog_category_flat*
rule
@@ -2022,9 +2013,6 @@ | |||
<ignore> | |||
<document>signifyd_case</document> | |||
</ignore> | |||
<ignore> | |||
<document>catalog_product_index_price*</document> | |||
</ignore> |
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.
Covered by catalog_product_index*
rule
@@ -2209,7 +2197,7 @@ | |||
<document>sequence_order_*</document> | |||
</ignore> | |||
<ignore> | |||
<document>sequence_shipment*</document> |
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.
Reduced to a common format with other sequence rules
@@ -2355,9 +2343,6 @@ | |||
<ignore> | |||
<document>captcha_log</document> | |||
</ignore> | |||
<ignore> | |||
<document>catalog_product_index_group_price</document> | |||
</ignore> |
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.
Covered by catalog_product_index*
rule
</ignore> | ||
<ignore> | ||
<document>catalog_product_index_price*</document> | ||
</ignore> |
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.
Covered by catalog_product_index*
rule
<document>inventory_stock</document> | ||
</ignore> | ||
<ignore> | ||
<document>inventory_stock_*</document> |
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.
Both covered with new inventory_stock*
rule
</ignore> | ||
<ignore> | ||
<datatype>catalog_product_index_tier_price.customer_group_id</datatype> | ||
</ignore> |
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.
Unnecessary rules because the table is excluded by catalog_product_index*
rule
</ignore> | ||
<ignore> | ||
<datatype>catalog_product_index_tier_price.customer_group_id</datatype> | ||
</ignore> |
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.
Unnecessary rules because the table is excluded by catalog_product_index*
rule
Hi @DmitryFurs, thank you for your contribution! |
Description
To ignore all the extension tables, we must be able to set only one wildcard rule. For example, to ignore all the tables for the blog by aheadworks, we must specify two rules for ignoring:
aw_blog
andaw_blog*
, since this module has a tableaw_blog
and has tablesaw_blog_cat
,aw_blog_cat_store
and so on, and theaw_blog*
rule is cast to/^aw_blog.+/
regexp. This fix causes the regular expression to look like/^aw_blog.*/
and allows us to ignore such tables by specifying just one wildcard ruleContribution checklist