All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.shaded.org.apache.calcite.sql.SqlSingletonAggFunction Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.hazelcast.shaded.org.apache.calcite.sql;

import com.hazelcast.shaded.org.apache.calcite.rel.core.AggregateCall;
import com.hazelcast.shaded.org.apache.calcite.rel.type.RelDataType;
import com.hazelcast.shaded.org.apache.calcite.rex.RexBuilder;
import com.hazelcast.shaded.org.apache.calcite.rex.RexNode;

/** Aggregate function that knows how to convert itself to a scalar value
 * when applied to a single row. */
public interface SqlSingletonAggFunction {
  /** Generates an expression for the value of the aggregate function when
   * applied to a single row.
   *
   * 

For example, if there is one row: *

    *
  • {@code SUM(x)} is {@code x} *
  • {@code MIN(x)} is {@code x} *
  • {@code MAX(x)} is {@code x} *
  • {@code COUNT(x)} is {@code CASE WHEN x IS NOT NULL THEN 1 ELSE 0 END 1} * which can be simplified to {@code 1} if {@code x} is never null *
  • {@code COUNT(*)} is 1 *
  • {@code GROUPING(deptno)} if 0 if {@code deptno} is being grouped, * 1 otherwise *
* * @param rexBuilder Rex builder * @param inputRowType Input row type * @param aggregateCall Aggregate call * * @return Expression for single row */ RexNode singleton(RexBuilder rexBuilder, RelDataType inputRowType, AggregateCall aggregateCall); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy