mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Updated to not try to prime PVS cache for non-table PVS's
This commit is contained in:
@ -126,7 +126,11 @@ public class QPossibleValueTranslator
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<QPossibleValue<?>> rs = new ArrayList<>();
|
List<QPossibleValue<?>> rs = new ArrayList<>();
|
||||||
primePvsCache(possibleValueSource.getTableName(), List.of(possibleValueSource), ids);
|
if(possibleValueSource.getType().equals(QPossibleValueSourceType.TABLE))
|
||||||
|
{
|
||||||
|
primePvsCache(possibleValueSource.getTableName(), List.of(possibleValueSource), ids);
|
||||||
|
}
|
||||||
|
|
||||||
for(Serializable id : ids)
|
for(Serializable id : ids)
|
||||||
{
|
{
|
||||||
String translated = translatePossibleValue(possibleValueSource, id);
|
String translated = translatePossibleValue(possibleValueSource, id);
|
||||||
|
Reference in New Issue
Block a user