syntax-connector-details.html 1.0 KB

123456789101112
  1. {{ $connector := .Get "connector" }}
  2. {{ $envelopes := split ( .Get "envelopes" ) " " }}
  3. Field | Use
  4. ------|-----
  5. _src_name_ | The name for the source, which is used as its table name within SQL.
  6. _col_name_ | Override default column name with the provided [identifier](../../identifiers). If used, a _col_name_ must be provided for each column in the created source.
  7. **IN CLUSTER** _cluster_name_ | The [cluster](/sql/create-cluster) to maintain this source.
  8. {{ partial (printf "create-source/connector/%s/syntax" $connector ) . -}}
  9. {{ range $envelopes }}{{ partial (printf "create-source/envelope/%s/syntax" .) . }}{{ end -}}
  10. **EXPOSE PROGRESS AS** _progress_subsource_name_ | The name of the progress subsource for the source. If this is not specified, the subsource will be named `<src_name>_progress`. For more information, see [Monitoring source progress](#monitoring-source-progress).
  11. **WITH (** _option&lowbar;list_ **)** | Options affecting source creation. For all available options, see [`with_options`](#with_options).