blob: 79b27436af94a0e896510932179566d1bfe47cdc [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 ELEMDDLCONSTRAINTPK_H
#define ELEMDDLCONSTRAINTPK_H
/* -*-C++-*-
*****************************************************************************
*
* File: ElemDDLConstraintPK.h
* Description: class for Primary Key constraint definitions in DDL
* statements
*
*
* Created: 4/14/95
* Language: C++
*
*
*
*
*****************************************************************************
*/
#include "ComSmallDefs.h"
#include "ElemDDLConstraintUnique.h"
// -----------------------------------------------------------------------
// contents of this file
// -----------------------------------------------------------------------
class ElemDDLConstraintPK;
class ElemDDLConstraintPKColumn;
// -----------------------------------------------------------------------
// forward references
// -----------------------------------------------------------------------
// None.
// -----------------------------------------------------------------------
// definition of class ElemDDLConstraintPK
// -----------------------------------------------------------------------
class ElemDDLConstraintPK : public ElemDDLConstraintUnique
{
public:
// constructors
ElemDDLConstraintPK(ElemDDLNode * pColumnRefList = NULL,
ComPkeySerialization ser = COM_SER_NOT_SPECIFIED,
NABoolean isNullableSpecified = FALSE)
: ElemDDLConstraintUnique(ELM_CONSTRAINT_PRIMARY_KEY_ELEM,
pColumnRefList),
ser_(ser),
isNullableSpecified_(isNullableSpecified)
{ }
ElemDDLConstraintPK(OperatorTypeEnum operatorType,
ComPkeySerialization ser = COM_SER_NOT_SPECIFIED,
NABoolean isNullableSpecified = FALSE)
: ElemDDLConstraintUnique(operatorType,
NULL /*column_reference_list*/),
ser_(ser),
isNullableSpecified_(isNullableSpecified)
{ }
// virtual destructor
virtual ~ElemDDLConstraintPK();
// cast
virtual ElemDDLConstraintPK * castToElemDDLConstraintPK();
// methods for tracing
virtual const NAString displayLabel2() const;
virtual const NAString getText() const;
ComPkeySerialization ser() { return ser_; }
NABoolean notSerialized()
{ return (ser_ == ComPkeySerialization::COM_NOT_SERIALIZED); }
NABoolean serialized()
{ return (ser_ == ComPkeySerialization::COM_SERIALIZED); }
NABoolean isNullableSpecified() { return isNullableSpecified_; }
private:
// if set to SERIALIZED, then pkey will be encoded before passint to hbase.
// if set to NOT_SERIALIZED, then primary key will not be encoded before
// passing on to HBase.
// Used when accessing external HBase tables where data may not be stored
// in serialized mode.
// if not specified, then will be determined based on table type.
ComPkeySerialization ser_;
// if set, primary key is nullable. Do not make pkey columns non-nullable
// if NOT NULL is not explicitly specified.
NABoolean isNullableSpecified_;
}; // class ElemDDLConstraintPK
// -----------------------------------------------------------------------
// definition of class ElemDDLConstraintPKColumn
// -----------------------------------------------------------------------
class ElemDDLConstraintPKColumn : public ElemDDLConstraintPK
{
public:
// constructor
ElemDDLConstraintPKColumn(ComColumnOrdering orderingSpec = COM_ASCENDING_ORDER,
NABoolean isNullableSpecified = FALSE)
: ElemDDLConstraintPK(ELM_CONSTRAINT_PRIMARY_KEY_COLUMN_ELEM,
COM_SER_NOT_SPECIFIED, isNullableSpecified),
columnOrdering_(orderingSpec)
{ }
// virtual destructor
virtual ~ElemDDLConstraintPKColumn();
// cast
virtual ElemDDLConstraintPKColumn * castToElemDDLConstraintPKColumn();
// accessor
inline ComColumnOrdering getColumnOrdering() const;
// methods for tracing
virtual const NAString getText() const;
private:
ComColumnOrdering columnOrdering_;
}; // class ElemDDLConstraintPKColumn
// -----------------------------------------------------------------------
// definitions of inline methods of class ElemDDLConstraintPKColumn
// -----------------------------------------------------------------------
//
// accessor
//
inline ComColumnOrdering
ElemDDLConstraintPKColumn::getColumnOrdering() const
{
return columnOrdering_;
}
#endif /* ELEMDDLCONSTRAINTPK_H */