public IsrtCrossJoinElement Create(
            IsIndexElement sIndexElement,
            IrIndexElement rIndexElement,
            ItIndexElement tIndexElement)
        {
            IsrtCrossJoinElement crossJoinElement = null;

            try
            {
                crossJoinElement = new srtCrossJoinElement(
                    sIndexElement,
                    rIndexElement,
                    tIndexElement);
            }
            catch (Exception exception)
            {
                this.Log.Error("Exception message: " + exception.Message + " and stacktrace " + exception.StackTrace);
            }

            return(crossJoinElement);
        }
Example #2
0
        public IsrtCrossJoinElement Create(
            IsIndexElement sIndexElement,
            IrIndexElement rIndexElement,
            ItIndexElement tIndexElement)
        {
            IsrtCrossJoinElement crossJoinElement = null;

            try
            {
                crossJoinElement = new srtCrossJoinElement(
                    sIndexElement,
                    rIndexElement,
                    tIndexElement);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(crossJoinElement);
        }