//--------------------------------------------------------------------------- // Greenplum Database // Copyright (c) 2020 VMware, Inc. // // @filename: // CPhysicalRightOuterHashJoin.h // // @doc: // Right outer hash join operator //--------------------------------------------------------------------------- #ifndef GPOPT_CPhysicalRightOuterHashJoin_H #define GPOPT_CPhysicalRightOuterHashJoin_H #include "gpos/base.h" #include "gpopt/operators/CPhysicalHashJoin.h" namespace gpopt { //--------------------------------------------------------------------------- // @class: // CPhysicalRightOuterHashJoin // // @doc: // Right outer hash join operator // //--------------------------------------------------------------------------- class CPhysicalRightOuterHashJoin : public CPhysicalHashJoin { private: // helper for deriving hash join distribution from hashed children CDistributionSpec *PdsDeriveFromHashedChildren( CMemoryPool *mp, CDistributionSpec *pdsOuter, CDistributionSpec *pdsInner) const; protected: // create optimization requests void CreateOptRequests(CMemoryPool *mp) override; public: CPhysicalRightOuterHashJoin(const CPhysicalRightOuterHashJoin &) = delete; // ctor CPhysicalRightOuterHashJoin( CMemoryPool *mp, CExpressionArray *pdrgpexprOuterKeys, CExpressionArray *pdrgpexprInnerKeys, IMdIdArray *hash_opfamilies, BOOL is_null_aware = true, CXform::EXformId origin_xform = CXform::ExfSentinel); // dtor ~CPhysicalRightOuterHashJoin() override; CDistributionSpec *PdsDerive(CMemoryPool *mp, CExpressionHandle &exprhdl) const override; // ident accessors EOperatorId Eopid() const override { return EopPhysicalRightOuterHashJoin; } // return a string for operator name const CHAR * SzId() const override { return "CPhysicalRightOuterHashJoin"; } // conversion function static CPhysicalRightOuterHashJoin * PopConvert(COperator *pop) { GPOS_ASSERT(nullptr != pop); GPOS_ASSERT(EopPhysicalRightOuterHashJoin == pop->Eopid()); return dynamic_cast(pop); } //------------------------------------------------------------------------------------- // Required Plan Properties //------------------------------------------------------------------------------------- // compute required distribution of the n-th child CEnfdDistribution *Ped(CMemoryPool *mp, CExpressionHandle &exprhdl, CReqdPropPlan *prppInput, ULONG child_index, CDrvdPropArray *pdrgpdpCtxt, ULONG ulOptReq) override; CPartitionPropagationSpec *PppsRequired( CMemoryPool *mp, CExpressionHandle &exprhdl, CPartitionPropagationSpec *pppsRequired, ULONG child_index, CDrvdPropArray *pdrgpdpCtxt, ULONG ulOptReq) const override; CPartitionPropagationSpec *PppsDerive( CMemoryPool *mp, CExpressionHandle &exprhdl) const override; }; // class CPhysicalRightOuterHashJoin } // namespace gpopt #endif // !GPOPT_CPhysicalRightOuterHashJoin_H // EOF