nareshpr commented on a change in pull request #1712:
URL: https://github.com/apache/hive/pull/1712#discussion_r532821552



##########
File path: 
standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java
##########
@@ -2725,7 +2725,7 @@ private void insertTxnComponents(long txnid, LockRequest 
rqst, Connection dbConn
           }
           String dbName = normalizeCase(lc.getDbname());
           String tblName = normalizeCase(lc.getTablename());
-          String partName = normalizeCase(lc.getPartitionname());
+          String partName = lc.getPartitionname();

Review comment:
       Yes, i validated below 4 SQL's with my patch, partition(key=value) is 
already normalized 
   
   insert into table abc PARTITION(CitY='Bangalore') values('Dan');
   insert overwrite table abc partition(CiTy='Bangalore') select Name from abc;
   update table abc set Name='xy' where CiTy='Bangalore';
   delete from abc where CiTy='Bangalore';




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to