feat: Add support to schema in the sql_raw output #41
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.
Related task: https://curupira.visualstudio.com/BLiP/_boards/board/t/Firehose/Backlog%20items/?workitem=785752
This pull request includes several updates to dependencies in the
go.mod
file and enhancements to the SQL output configurations in the project. The most important changes include updating dependency versions, adding default values for SQL configuration fields, and enhancing SQL output configurations.Dependency Updates:
go.mod
: Updated versions forjackfan.us.kg/klauspost/compress
,github.com/parquet-go/parquet-go
,google.golang.org/protobuf
,github.com/rivo/uniseg
,github.com/segmentio/encoding
, andgolang.org/x/sys
. [1] [2] [3] [4] [5]SQL Configuration Enhancements:
internal/impl/sql/output_sql_deprecated.go
: ModifiednewSQLDeprecatedOutputFromConfig
to include empty default values for new parameters.internal/impl/sql/output_sql_insert.go
: Added default values forcolumns
anddata_types
fields insqlInsertOutputConfig
. [1] [2]internal/impl/sql/output_sql_raw.go
: EnhancedsqlRawOutputConfig
to includecolumns
anddata_types
fields with default values, and updated related methods to handle these fields. [1] [2] [3] [4] [5] [6] [7]Documentation Updates:
website/docs/components/outputs/sql_insert.md
: Updated documentation to reflect default values forcolumns
anddata_types
fields. [1] [2] [3] [4]website/docs/components/outputs/sql_raw.md
: Updated documentation to includecolumns
anddata_types
fields with descriptions and examples. [1] [2] [3]