Class: Google::Cloud::Bigquery::Migration::V2::TeradataDialect
- Inherits:
-
Object
- Object
- Google::Cloud::Bigquery::Migration::V2::TeradataDialect
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/bigquery/migration/v2/translation_config.rb
Overview
The dialect definition for Teradata.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#mode ⇒ ::Google::Cloud::Bigquery::Migration::V2::TeradataDialect::Mode
Which Teradata sub-dialect mode the user specifies.
Instance Attribute Details
#mode ⇒ ::Google::Cloud::Bigquery::Migration::V2::TeradataDialect::Mode
Returns Which Teradata sub-dialect mode the user specifies.
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'proto_docs/google/cloud/bigquery/migration/v2/translation_config.rb', line 138 class TeradataDialect include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The sub-dialect options for Teradata. module Mode # Unspecified mode. MODE_UNSPECIFIED = 0 # Teradata SQL mode. SQL = 1 # BTEQ mode (which includes SQL). BTEQ = 2 end end |