Skip to content

Commit a78996b

Browse files
committed
Fixed integer return type issue for UDF
1 parent 6ed8316 commit a78996b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/Adapter/Microsoft.Spark.CSharp/Sql/Functions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ public static Func<Column, Column, Column, Column, Column, Column, Column, Colum
919919
{typeof(double), "double"},
920920
{typeof(float), "float"},
921921
{typeof(byte), "tinyint"},
922-
{typeof(int), "int"},
922+
{typeof(int), "integer"},
923923
{typeof(long), "bigint"},
924924
{typeof(short), "smallint"}
925925
};

0 commit comments

Comments
 (0)