Description
String pattern = errorMsg.mesg.replaceAll("\\{.*\\}", ".*");
should be
String pattern = errorMsg.mesg.replaceAll("\\{[0-9]+\\}", ".*");
current regex can match the whole msg (with more than 1 param)
Attachments
Attachments
Issue Links
- blocks
-
HIVE-9675 Support START TRANSACTION/COMMIT/ROLLBACK commands
- Open
- is blocked by
-
HIVE-10148 update of bucketing column should not be allowed
- Closed