Cassandra\SchemaMetadataIntegrationTest::createSimpleSecondaryIndex PHP Method

createSimpleSecondaryIndex() protected method

Create the simple secondary index using the table
    protected function createSimpleSecondaryIndex()
    {
        $statement = new SimpleStatement("CREATE INDEX simple ON {$this->tableNamePrefix} (value1)");
        $this->session->execute($statement);
    }