You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2020/07/21 21:21:37 UTC

[GitHub] [iceberg] RussellSpitzer edited a comment on issue #1224: Importing a Spark table with Whitespace in Partition URI Results in FileNotFound Exception

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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org