feat(externaltable): added support for table_format #2182
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request adds a
table_format
attribute to the snowflake_external_table resource.Test Plan
I ran
make test-acceptance
but I keep running into the following issue :"Your user account has been temporarily locked due to too many failed attempts"
=== RUN TestExternalTable
--- PASS: TestExternalTable (0.00s)
=== RUN TestExternalTableCreate
--- PASS: TestExternalTableCreate (0.00s)
=== RUN TestExternalTableRead
--- PASS: TestExternalTableRead (0.00s)
=== RUN TestExternalTableDelete
--- PASS: TestExternalTableDelete (0.00s)
=== RUN TestExternalTablesCreate
=== RUN TestExternalTablesCreate/basic_options
=== RUN TestExternalTablesCreate/every_optional_field
=== RUN TestExternalTablesCreate/invalid_options
--- PASS: TestExternalTablesCreate (0.00s)
--- PASS: TestExternalTablesCreate/basic_options (0.00s)
--- PASS: TestExternalTablesCreate/every_optional_field (0.00s)
--- PASS: TestExternalTablesCreate/invalid_options (0.00s)
=== RUN TestExternalTablesCreateWithManualPartitioning
=== RUN TestExternalTablesCreateWithManualPartitioning/valid_options
=== RUN TestExternalTablesCreateWithManualPartitioning/invalid_options
--- PASS: TestExternalTablesCreateWithManualPartitioning (0.00s)
--- PASS: TestExternalTablesCreateWithManualPartitioning/valid_options (0.00s)
--- PASS: TestExternalTablesCreateWithManualPartitioning/invalid_options (0.00s)
=== RUN TestExternalTablesCreateDeltaLake
=== RUN TestExternalTablesCreateDeltaLake/valid_options
=== RUN TestExternalTablesCreateDeltaLake/invalid_options
--- PASS: TestExternalTablesCreateDeltaLake (0.00s)
--- PASS: TestExternalTablesCreateDeltaLake/valid_options (0.00s)
--- PASS: TestExternalTablesCreateDeltaLake/invalid_options (0.00s)
=== RUN TestExternalTableUsingTemplateOpts
=== RUN TestExternalTableUsingTemplateOpts/valid_options
=== RUN TestExternalTableUsingTemplateOpts/invalid_options
--- PASS: TestExternalTableUsingTemplateOpts (0.00s)
--- PASS: TestExternalTableUsingTemplateOpts/valid_options (0.00s)
--- PASS: TestExternalTableUsingTemplateOpts/invalid_options (0.00s)
=== RUN TestExternalTablesAlter
=== RUN TestExternalTablesAlter/refresh_without_path
=== RUN TestExternalTablesAlter/refresh_with_path
=== RUN TestExternalTablesAlter/add_files
=== RUN TestExternalTablesAlter/remove_files
=== RUN TestExternalTablesAlter/set_auto_refresh
=== RUN TestExternalTablesAlter/set_tag
=== RUN TestExternalTablesAlter/unset_tag
=== RUN TestExternalTablesAlter/invalid_options
--- PASS: TestExternalTablesAlter (0.00s)
--- PASS: TestExternalTablesAlter/refresh_without_path (0.00s)
--- PASS: TestExternalTablesAlter/refresh_with_path (0.00s)
--- PASS: TestExternalTablesAlter/add_files (0.00s)
--- PASS: TestExternalTablesAlter/remove_files (0.00s)
--- PASS: TestExternalTablesAlter/set_auto_refresh (0.00s)
--- PASS: TestExternalTablesAlter/set_tag (0.00s)
--- PASS: TestExternalTablesAlter/unset_tag (0.00s)
--- PASS: TestExternalTablesAlter/invalid_options (0.00s)
=== RUN TestExternalTablesAlterPartitions
=== RUN TestExternalTablesAlterPartitions/add_partition
=== RUN TestExternalTablesAlterPartitions/remove_partition
=== RUN TestExternalTablesAlterPartitions/invalid_options
--- PASS: TestExternalTablesAlterPartitions (0.00s)
--- PASS: TestExternalTablesAlterPartitions/add_partition (0.00s)
--- PASS: TestExternalTablesAlterPartitions/remove_partition (0.00s)
--- PASS: TestExternalTablesAlterPartitions/invalid_options (0.00s)
=== RUN TestExternalTablesDrop
=== RUN TestExternalTablesDrop/restrict
=== RUN TestExternalTablesDrop/cascade
=== RUN TestExternalTablesDrop/invalid_options
--- PASS: TestExternalTablesDrop (0.00s)
--- PASS: TestExternalTablesDrop/restrict (0.00s)
--- PASS: TestExternalTablesDrop/cascade (0.00s)
--- PASS: TestExternalTablesDrop/invalid_options (0.00s)
=== RUN TestExternalTablesShow
=== RUN TestExternalTablesShow/all_options
=== RUN TestExternalTablesShow/in_database
=== RUN TestExternalTablesShow/in_schema
=== RUN TestExternalTablesShow/invalid_options
--- PASS: TestExternalTablesShow (0.00s)
--- PASS: TestExternalTablesShow/all_options (0.00s)
--- PASS: TestExternalTablesShow/in_database (0.00s)
--- PASS: TestExternalTablesShow/in_schema (0.00s)
--- PASS: TestExternalTablesShow/invalid_options (0.00s)
=== RUN TestExternalTablesDescribe
=== RUN TestExternalTablesDescribe/type_columns
=== RUN TestExternalTablesDescribe/type_stage
--- PASS: TestExternalTablesDescribe (0.00s)
--- PASS: TestExternalTablesDescribe/type_columns (0.00s)
--- PASS: TestExternalTablesDescribe/type_stage (0.00s)
References
Resolves #1564