Update RDBMS Aggregates to return INTEGER for COUNT on temporal field types

This commit is contained in:
2025-01-03 16:33:50 -06:00
parent b02818764b
commit f9cd4373aa
3 changed files with 99 additions and 45 deletions

View File

@ -120,6 +120,16 @@ public enum QFieldType
/*******************************************************************************
**
*******************************************************************************/
public boolean isTemporal()
{
return this == QFieldType.DATE || this == QFieldType.DATE_TIME || this == QFieldType.TIME;
}
/*******************************************************************************
**
*******************************************************************************/