fix: Histogram chart not able to use decimal datatype column (#30416)

This commit is contained in:
Michael S. Molina
2024-09-30 09:04:55 -03:00
committed by GitHub
parent bdd50c7553
commit 4834390e6a
3 changed files with 19 additions and 24 deletions

View File

@@ -25,7 +25,6 @@ export default function buildQuery(formData: HistogramFormData) {
return buildQueryContext(formData, baseQueryObject => [
{
...baseQueryObject,
extras: { where: `${column} IS NOT NULL` },
columns: [...groupby, column],
post_processing: [histogramOperator(formData, baseQueryObject)],
metrics: undefined,