'Make schema_filter select only specific Tables in doctrine dbal connection configs

Is there a way to let "schema_filter" config to match only 2 specific tables (TOURP and hen) I tried this.

doctrine:
   dbal:
    default_connection: default
    connections:
        oracle:
          driver:        oci8
          host:         '10.50.128.2'
          port:         '1521'
          servicename:  'SAT'
          dbname:       'SAT'
          user:         'lemans'
          password:     'lemans'
          schema_filter: (TOURP|hen)

But when I reverse engineer the schema I get also another table containing the TOURP in his name:

Result (SAVE_IC476659_TOURP) is also matched .

Table SAVE_IC476659_TOURP has no primary key.


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source