Cassandra\SchemaMetadataIntegrationTest::createSimpleMaterializedView PHP 메소드

createSimpleMaterializedView() 보호된 메소드

Create the simple materialized view using the first table
    protected function createSimpleMaterializedView()
    {
        $statement = new SimpleStatement("CREATE MATERIALIZED VIEW simple AS " . "SELECT key1 FROM {$this->tableNamePrefix}_1 WHERE value1 IS NOT NULL " . "PRIMARY KEY(value1, key1)");
        $this->session->execute($statement);
    }