RussellSpitzer edited a comment on issue #1224: URL: https://github.com/apache/iceberg/issues/1224#issuecomment-662112918
```scala> new URI("file:///has%20spaces") res3: java.net.URI = file:///has%20spaces scala> val uri = new URI("file:///has%20spaces") uri: java.net.URI = file:///has%20spaces scala> new Path(uri).toString res4: String = file:/has spaces scala> new Path(uri.toString).toString res5: String = file:/has%20spaces ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org