{{ name }}
{{ source_kind }}
{% if lazy %}lazy{% endif %}
{{ column_count }}
columns
{{ indexed_count }}
indexed
{{ nullable_count }}
nullable
- Source
- {{ source_kind }} · {{ source_location }}
- Index mode
- {{ index_mode }}{% if !index_columns.is_empty() %} · {{ index_columns }}{% endif %}
- Projection
- {{ projection }}
- Dictionary encode
- {{ dict_encode }}
- Lazy
- {{ lazy }}
{% if has_s3 %}
- S3 region
- {{ s3_region }}
- S3 endpoint
- {{ s3_endpoint }}
- S3 addressing
- {{ s3_addressing }} · partitioning {{ s3_partitioning }}
- S3 credentials
- {{ s3_creds }}
{% endif %}
| # | Column | Logical | SQL type | Nullable | Indexed |
{% for c in columns %}
| {{ loop.index }} |
{{ c.name }} |
{{ c.logical }} |
{{ c.sql_type }} |
{% if c.nullable %}{% else %}{% endif %} |
{% if c.indexed %}{% else %}{% endif %} |
{% endfor %}