[
https://issues.jboss.org/browse/TEIIDDES-2154?page=com.atlassian.jira.plu...
]
Barry LaFond commented on TEIIDDES-2154:
----------------------------------------
Fix for 8.3.3 will only include the patch for VdbModelEntry.getTranslatorOverride()
method:
{code}
/**
* Returns the current <code>TranslatorOverride</code> for this model
* @return translator override. May be null.
*/
public final TranslatorOverride getTranslatorOverride() {
if( !this.sourceInfo.isEmpty() ) {
Set<TranslatorOverride> overrides = getVdb().getTranslators();
for( TranslatorOverride to : overrides) {
for( VdbSource source : this.sourceInfo.getSources() ) {
String translatorName = source.getTranslatorName();
if( translatorName != null &&
translatorName.toString().equalsIgnoreCase(to.getType()) ) {
return to;
}
}
}
}
return null;
}
{code}
Preview VDB is not updated after adding or modifying a translator
override
--------------------------------------------------------------------------
Key: TEIIDDES-2154
URL:
https://issues.jboss.org/browse/TEIIDDES-2154
Project: Teiid Designer
Issue Type: Bug
Components: Data Preview
Affects Versions: 8.3.2
Reporter: Ted Jones
Assignee: Barry LaFond
Priority: Critical
Fix For: 8.5, 8.3.3
If a preview VDB is created and then a translator override property is added or modified,
the preview VDB is not updated.
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)