Mahesh Raju Somalaraju created CARBONDATA-4230:
--------------------------------------------------
Summary: table properties not updated with lower-case
Key: CARBONDATA-4230
URL: https://issues.apache.org/jira/browse/CARBONDATA-4230
Project: CarbonData
Issue Type: Bug
Reporter: Mahesh Raju Somalaraju
h1. 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)
}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)