use of org.apache.carbondata.core.reader.sortindex.CarbonDictionarySortIndexReaderImpl in project carbondata by apache.
the class CarbonDictionarySortIndexWriterImplTest method setUp.
@Before
public void setUp() throws Exception {
storePath = "target/carbonStore";
carbonTableIdentifier = new CarbonTableIdentifier("testSchema", "carbon", UUID.randomUUID().toString());
columnIdentifier = new ColumnIdentifier("Name", null, null);
dictionaryWriter = new CarbonDictionaryWriterImpl(storePath, carbonTableIdentifier, columnIdentifier);
dictionarySortIndexWriter = new CarbonDictionarySortIndexWriterImpl(carbonTableIdentifier, columnIdentifier, storePath);
carbonDictionarySortIndexReader = new CarbonDictionarySortIndexReaderImpl(carbonTableIdentifier, columnIdentifier, storePath);
}
Aggregations