User Defined Functions (UDF)
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
from rbc.omniscidb import RemoteOmnisci
omnisci = RemoteOmnisci(user='admin', password='HyperInteractive',
host='127.0.0.1', port=6274, dbname='omnisci')@omnisci('int32(int32)')
def incr(i):
return i + 1