Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.37.0
-
None
-
None
Description
Execute SQL :
select cast(product_id as char) from product
Expected Mssql SQL should be:
SELECT CAST([product_id] AS CHAR) FROM [foodmart].[product]
But is:
SELECT CAST([product_id] AS CHAR(1)) FROM [foodmart].[product]