dbupper.js Filter
The dbupper filter changes the case of the schema name for all schemas to uppercase. The schema information is easily identified in the
statement and row based information, and therefore easy to update.
| Pre-configured filter name | dbupper |
| JavaScript Filter File | tungsten-replicator/support/filters-javascript/dbupper.js |
| Property prefix | replicator.filter.dbupper |
| Stage compatibility | binlog-to-q |
tpm Option compatibility | svc-extractor-filters, svc-applier-filters |
| Data compatibility | Any event |
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
from | string | (none) | Database name to be converted to uppercase |
For example, within statement data:
from = d.getDefaultSchema();
if (from != null)
{
to = from.toUpperCase();
d.setDefaultSchema(to);
}