-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-1096894: Calling multiple registered models in snowsql returns NULL output for all but the first model #89
Comments
To update this: So as a minimal example:
will return identical values, even if calling the model 2 separately will return a different value to model 1. So in essence you can call at most one modell per query currently. |
Sorry for late reply. Given it is consistently reproducing for you with same signature functions, would you please confirm if you observe the same between two versions of same model? That is, store
|
Just to update @adaykoth - We are still investigating this issue. I tried this and the resolution seems to be ok. We will keep you posted if we discover something
As you can see in the above example, I have three different models and each model is invoking its method. |
Hi @adaykoth fyi the team is actively working on the fix. |
Hi @adaykoth , We have identified the root cause and implemented the fix in the just released 1.4.0 version. You need to upgrade and re-log your model so that they could work in the same query. We are closing this issue, however, if you have any problems or find this issue still exists, please reopen it. Thank you for your support! |
Suppose I have registered models m1, m2 and m3 in the core db under the schema models.
The following query will return NULL for the second and third predict call:
Note that calling the models independently in a query produces correct results and switching the order of the model call also changes which model produces a non-null output. It is always the first one.
The text was updated successfully, but these errors were encountered: