You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having "table" as parameter causes a lot of issues for users. If the double quotes are missing the call will fail because table is a reserved word. We should rename that perhaps to "table_name" or "relation", and change the datatype to regclass. Idea with changing to regclass is that we will get more meaningful data validation errors if the table name provided does not exist, and I think using regclass would also mean we could remove the "schema" parameter.
The text was updated successfully, but these errors were encountered:
Having "table" as parameter causes a lot of issues for users. If the double quotes are missing the call will fail because
table
is a reserved word. We should rename that perhaps to "table_name" or "relation", and change the datatype toregclass
. Idea with changing toregclass
is that we will get more meaningful data validation errors if the table name provided does not exist, and I think usingregclass
would also mean we could remove the "schema" parameter.The text was updated successfully, but these errors were encountered: