Skip to content

Commit

Permalink
Update ingest option keys and comment
Browse files Browse the repository at this point in the history
  • Loading branch information
joellubi committed Jan 21, 2024
1 parent 8631b10 commit bd03d4b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions go/adbc/driver/snowflake/statement.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ import (
const (
OptionStatementQueueSize = "adbc.rpc.result_queue_size"
OptionStatementPrefetchConcurrency = "adbc.snowflake.rpc.prefetch_concurrency"
OptionStatementIngestWriterConcurrency = "adbc.snowflake.rpc.ingest_writer_concurrency"
OptionStatementIngestUploadConcurrency = "adbc.snowflake.rpc.ingest_upload_concurrency"
OptionStatementIngestCopyConcurrency = "adbc.snowflake.rpc.ingest_copy_concurrency"
OptionStatementIngestTargetFileSize = "adbc.snowflake.rpc.ingest_target_file_size"
OptionStatementIngestCompressionCodec = "adbc.snowflake.rpc.ingest_compression_codec" // TODO(joellubi): Implement option
OptionStatementIngestCompressionLevel = "adbc.snowflake.rpc.ingest_compression_level" // TODO(joellubi): Implement option
OptionStatementIngestWriterConcurrency = "adbc.snowflake.statement.ingest_writer_concurrency"
OptionStatementIngestUploadConcurrency = "adbc.snowflake.statement.ingest_upload_concurrency"
OptionStatementIngestCopyConcurrency = "adbc.snowflake.statement.ingest_copy_concurrency"
OptionStatementIngestTargetFileSize = "adbc.snowflake.statement.ingest_target_file_size"
OptionStatementIngestCompressionCodec = "adbc.snowflake.statement.ingest_compression_codec" // TODO(GH-1473): Implement option
OptionStatementIngestCompressionLevel = "adbc.snowflake.statement.ingest_compression_level" // TODO(GH-1473): Implement option
)

type statement struct {
Expand Down

0 comments on commit bd03d4b

Please sign in to comment.