From 9c1489a5126437ec2de64c3c8d344514391c7849 Mon Sep 17 00:00:00 2001 From: Robin Tang Date: Mon, 9 Sep 2024 21:34:35 -0700 Subject: [PATCH] Converting to warn. --- lib/optimization/table_data.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/optimization/table_data.go b/lib/optimization/table_data.go index 9913d20a7..41549404e 100644 --- a/lib/optimization/table_data.go +++ b/lib/optimization/table_data.go @@ -279,7 +279,7 @@ func (t *TableData) MergeColumnsFromDestination(destCols ...columns.Column) erro // However, this will wipe the precision unit from the INTEGER which may cause integer overflow. shouldSkip := inMemoryCol.KindDetails.Kind == typing.EDecimal.Kind && foundColumn.KindDetails.Kind == typing.Integer.Kind if shouldSkip { - slog.Info("Skipping column", slog.String("column", inMemoryCol.Name()), slog.String("inMemoryKind", inMemoryCol.KindDetails.Kind), slog.String("foundKind", foundColumn.KindDetails.Kind)) + slog.Warn("Skipping column", slog.String("column", inMemoryCol.Name()), slog.String("inMemoryKind", inMemoryCol.KindDetails.Kind), slog.String("foundKind", foundColumn.KindDetails.Kind)) } else { // We should take `kindDetails.kind` and `backfilled` from foundCol // We are not taking primaryKey and defaultValue because DWH does not have this information.