From 81aee3aab10bb543eeb93c8a99e110f359536d7a Mon Sep 17 00:00:00 2001 From: AsafMah Date: Sun, 16 Jun 2024 16:38:04 +0300 Subject: [PATCH] Update azkustoingest/file_options.go Co-authored-by: ohad bitton <32278684+ohadbitt@users.noreply.github.com> --- kusto/ingest/file_options.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kusto/ingest/file_options.go b/kusto/ingest/file_options.go index 782a3a88..df4f037e 100644 --- a/kusto/ingest/file_options.go +++ b/kusto/ingest/file_options.go @@ -226,8 +226,8 @@ func InferFormatFromFileName(fName string) DataFormat { return properties.DataFormatDiscovery(fName) } -// IngestionMapping provides runtime mapping of the data being imported to the fields in the table. -// "ref" will be JSON encoded, so it can be any type that can be JSON marshalled. If you pass a string +// IngestionMapping provides runtime mapping of the data being imported to the columns in the table. +// "mapping" will be JSON encoded, so it can be any type that can be JSON marshalled. If you pass a string // or []byte, it will be interpreted as already being JSON encoded. // The format parameter will automatically set the FileOption.Format option. func IngestionMapping(mapping interface{}, format DataFormat) FileOption {