Merge pull request #694 from sutyag/dev/sutyag/FixedReturnTypeIntIssue

Fixed integer Data type issue for UDF
This commit is contained in:
Kaarthik Sivashanmugam 2018-09-21 09:55:10 -07:00 коммит произвёл GitHub
Родитель 766acc8f58 a78996bbe3
Коммит 221dfbd498
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -919,7 +919,7 @@ namespace Microsoft.Spark.CSharp.Sql
{typeof(double), "double"},
{typeof(float), "float"},
{typeof(byte), "tinyint"},
{typeof(int), "int"},
{typeof(int), "integer"},
{typeof(long), "bigint"},
{typeof(short), "smallint"}
};