Hello guys, In my redshift recipe, I add some Glos...
# ingestion
s
Hello guys, In my redshift recipe, I add some Glossary Terms based on the table name pattern. However, there is an intersection of tables between two different patterns. When this happens, the second pattern doesn't add the glossary terms. How to correct this ? For example:
Copy code
# Linking all the tables having '_table_' on their name to the glossary1 Glossary Term.
'.*\._table_.*': ["urn:li:glossaryTerm:topic.glossary1"]

# Linking all the tables having '_table_example_' on their name to the glossary2 Glossary Term.
'.*\._table_example_.*': ["urn:li:glossaryTerm:topic.glossary2"]
Since all the tables present on the second pattern are also on the first one, the second pattern doesn't add the glossary2 to the tables. Thank you !