sadikovi commented on pull request #34995:
URL: https://github.com/apache/spark/pull/34995#issuecomment-1002391822
Well, it actually is affected. When I run the following commands in my
branch:
```
CREATE TABLE escapeDots (key int) USING parquet PARTITIONED BY (value
string);
INSERT INTO TABLE escapeDots PARTITION(value = 'blah/') VALUES (1);
INSERT INTO TABLE escapeDots PARTITION(value = 'blah{}') VALUES (2);
```
I get the following output:
```
+--------------+
| partition|
+--------------+
| value=blah%2F|
|value=blah%7B}|
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]