Package feast.proto.core
Interface DataSourceProto.DataSource.TrinoOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.TrinoOptions,DataSourceProto.DataSource.TrinoOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.TrinoOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetQuery()SQL query that returns a table containing feature data.com.google.protobuf.ByteStringgetQueryBytes()SQL query that returns a table containing feature data.StringgetTable()Full table reference in the form of [project:dataset.table]com.google.protobuf.ByteStringgetTableBytes()Full table reference in the form of [project:dataset.table]-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTable
String getTable()
Full table reference in the form of [project:dataset.table]
string table = 1;- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()
Full table reference in the form of [project:dataset.table]
string table = 1;- Returns:
- The bytes for table.
-
getQuery
String getQuery()
SQL query that returns a table containing feature data. Must contain an event_timestamp column, and respective entity columns
string query = 2;- Returns:
- The query.
-
getQueryBytes
com.google.protobuf.ByteString getQueryBytes()
SQL query that returns a table containing feature data. Must contain an event_timestamp column, and respective entity columns
string query = 2;- Returns:
- The bytes for query.
-
-