- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
ESRI spatial functions
- Labels:
-
Apache Hive
Created ‎08-05-2016 06:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How do I set session-based only ESRI spatial functions?
Created ‎08-06-2016 06:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@sivakumar sudhakarannair girijakumari
If you wish to use a function only during the active session, use temporary keyword in its creation statement.
Examples:
create temporary function ST_AsText as 'com.esri.hadoop.hive.ST_AsText'; |
create temporary function ST_Intersects as 'com.esri.hadoop.hive.ST_Intersects'; |
This is not specific for ESRI spatial functions. It works similarly for any user defined function (UDF) when invoked in Hive.
Created ‎08-06-2016 06:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@sivakumar sudhakarannair girijakumari
If you wish to use a function only during the active session, use temporary keyword in its creation statement.
Examples:
create temporary function ST_AsText as 'com.esri.hadoop.hive.ST_AsText'; |
create temporary function ST_Intersects as 'com.esri.hadoop.hive.ST_Intersects'; |
This is not specific for ESRI spatial functions. It works similarly for any user defined function (UDF) when invoked in Hive.
