Cassandra\SchemaMetadataIntegrationTest::createTableForSecondaryIndexes PHP Method

createTableForSecondaryIndexes() protected method

Create the table for the secondary indexes
    protected function createTableForSecondaryIndexes()
    {
        $statement = new SimpleStatement("CREATE TABLE {$this->tableNamePrefix} (key1 text, value1 int, value2 map<text, text>, PRIMARY KEY(key1))");
        $this->session->execute($statement);
    }