public interface CreateMaterializedViewStart
| Modifier and Type | Method and Description | 
|---|---|
CreateMaterializedViewSelection | 
asSelectFrom(CqlIdentifier table)
Specifies the base table for the materialized view. 
 | 
CreateMaterializedViewSelection | 
asSelectFrom(CqlIdentifier keyspace,
            CqlIdentifier table)
Specifies the base table for the materialized view. 
 | 
default CreateMaterializedViewSelection | 
asSelectFrom(String table)
Shortcut for  
asSelectFrom(CqlIdentifier.fromCql(table). | 
default CreateMaterializedViewSelection | 
asSelectFrom(String keyspace,
            String table)
 | 
CreateMaterializedViewStart | 
ifNotExists()
Adds IF NOT EXISTS to the create table specification. 
 | 
@NonNull CreateMaterializedViewStart ifNotExists()
@NonNull CreateMaterializedViewSelection asSelectFrom(@NonNull CqlIdentifier table)
@NonNull default CreateMaterializedViewSelection asSelectFrom(@NonNull String table)
asSelectFrom(CqlIdentifier.fromCql(table).@NonNull CreateMaterializedViewSelection asSelectFrom(@Nullable CqlIdentifier keyspace, @NonNull CqlIdentifier table)
@NonNull default CreateMaterializedViewSelection asSelectFrom(@Nullable String keyspace, @NonNull String table)
Copyright © 2017–2020. All rights reserved.