Open pearu opened 3 years ago
The error is raised from a UDF definition such as
def foo(n): tmp = np.zeros(n) ...
Task: improve error message and if possible, give a hint for possible solutions. For instance, tmp = np.zeros(n) call is equivalent to
tmp = np.zeros(n)
tmp = Array(n) tmp.fill(0)
If np.zeros is using the implementation from omnisci_backend, then it ought to work. Can you post a reproducible example?
np.zeros
omnisci_backend
The error is raised from a UDF definition such as
Task: improve error message and if possible, give a hint for possible solutions. For instance,
tmp = np.zeros(n)
call is equivalent to