blob: 9f2b7f99bc19b46d77b1b5ef4a25ed330dcd5f9f [file] [log] [blame]
/*
* 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 org.apache.drill.exec.physical.resultSet.impl;
import org.apache.drill.exec.vector.ValueVector;
import org.apache.drill.exec.vector.accessor.impl.HierarchicalFormatter;
/**
* Do-nothing vector state for a map column which has no actual vector
* associated with it.
*/
public class NullVectorState implements VectorState {
/**
* Near-do-nothing state for a vector that requires no work to
* allocate or roll-over, but where we do want to at least track
* the vector itself. (Used for map and union pseudo-vectors.)
*/
public static class UnmanagedVectorState extends NullVectorState {
ValueVector vector;
public UnmanagedVectorState(ValueVector vector) {
this.vector = vector;
}
@SuppressWarnings("unchecked")
@Override
public <T extends ValueVector> T vector() { return (T) vector; }
}
@Override public int allocate(int cardinality) { return 0; }
@Override public void rollover(int cardinality) { }
@Override public void harvestWithLookAhead() { }
@Override public void startBatchWithLookAhead() { }
@Override public void close() { }
@Override public <T extends ValueVector> T vector() { return null; }
@Override public boolean isProjected() { return false; }
@Override
public void dump(HierarchicalFormatter format) {
format.startObject(this).endObject();
}
}