Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
table properties not updated with lower-case
try to create table properties with case-sensitive and they are not storing with lower-case. due to this query properties are failing
reproduce steps.
test("testing geo case sensitive")
{ // Source columns must be present in the table. Fails to create table. sql("drop table source_index") sql( s""" | CREATE TABLE source_index(timevalue BIGINT, longitude LONG, latitude LONG) | STORED AS carbondata | TBLPROPERTIES ('SPATIAL_INDEX.MYGEOHASH.type'='geohash', 'SPATIAL_INDEX.mygeohash | .sourcecolumns'='longitude,latitude', | 'SPATIAL_INDEX.mygeohash.originalLatitude'='39.930753', | 'SPATIAL_INDEX.mygeohash.gridSize'='50', | 'SPATIAL_INDEX'='MYGEOHASH', | 'SPATIAL_INDEX.MYGEOHASH.conversionRatio'='1000000') """.stripMargin) }