blob: 5d64557d922a6613b574878459c6dd4109b15ca0 [file] [log] [blame]
/**********************************************************************
// @@@ START COPYRIGHT @@@
//
// 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.
//
// @@@ END COPYRIGHT @@@
**********************************************************************/
#ifndef ITEMNATYPE_H
#define ITEMNATYPE_H
/* -*-C++-*-
******************************************************************************
*
* File: ItemNAType.h
* Description: Functions and Aggregate item expressions
* Aggregates to be used in groupby rel. operators.
* Functions (and aggregates?) may be built-ins or user-defined.
* Created: 11/04/94
* Language: C++
*
*
*
*
******************************************************************************
*/
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
// contents of this file
// -----------------------------------------------------------------------
#include "NAType.h"
class NATypeToItem;
// -----------------------------------------------------------------------
// This class represents a node which "returns" an Item Expression
// and which has a single argument of an NAType. The binder performs
// the magical conversion. An instance of this class is used by the parser
// to represent the data_type portion of a cast expression.
// -----------------------------------------------------------------------
class NATypeToItem : public ItemExpr
{
public:
NATypeToItem( NAType *arg0,
OperatorTypeEnum opType = ITM_NATYPE) : ItemExpr(opType,NULL)
{
natype_pointer = arg0;
}
// virtual destructor
virtual ~NATypeToItem() { delete natype_pointer; }
// a virtual function for type propagating the node
virtual const NAType * synthesizeType();
virtual ItemExpr* copyTopNode(ItemExpr* = NULL, CollHeap *oheap = 0);
// get the degree of this node (it is a unary op).
virtual Int32 getArity() const;
const NAType* pushDownType(NAType& newType,
enum NABuiltInTypeEnum defaultQualifier);
// get a printable string that identifies the operator
virtual const NAString getText() const;
protected:
NAType *natype_pointer;
};
// This class is currently used during DDL time, when we need
// to validate item expressions without fully binding them. This
// ItemExpr represents a named and typed column in that case.
class NamedTypeToItem : public NATypeToItem
{
public:
NamedTypeToItem(const char *name,
NAType *typ,
CollHeap *heap) :
NATypeToItem(typ, ITM_NAMED_TYPE_TO_ITEM), name_(name, heap) {}
const NAString &getName() const { return name_; }
virtual ItemExpr* copyTopNode(ItemExpr* = NULL, CollHeap *oheap = 0);
virtual const NAString getText() const;
private:
NAString name_;
};
#endif