소스 검색

[importer] fixing encoding issue in importer for external file creation

ayush.goyal 3 년 전
부모
커밋
5199e3e24e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/libs/indexer/src/indexer/indexers/sql.py

+ 1 - 1
desktop/libs/indexer/src/indexer/indexers/sql.py

@@ -87,7 +87,7 @@ class SQLIndexer(object):
     isIceberg = destination['isIceberg']
     isIceberg = destination['isIceberg']
 
 
     external = not destination['useDefaultLocation']
     external = not destination['useDefaultLocation']
-    external_path = urllib_unquote(destination['nonDefaultLocation'])
+    external_path = destination['nonDefaultLocation']
 
 
     editor_type = destination['sourceType']
     editor_type = destination['sourceType']
     is_transactional = destination['isTransactional']
     is_transactional = destination['isTransactional']