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
Right now when not using ?columns and doing POST/PATCH, we process the json in Haskell code. This generates different behaviors, for example with the new Prefer: undefined-keys=apply-defaults(#2672).
What we need do is to get the privileges on the columns for GRANT INSERT(col1,col2)..; GRANT UPDATE(col1, col2).. for the roles that are member of authenticator. Then we can remove the Haskell json processing.
Right now when not using
?columns
and doing POST/PATCH, we process the json in Haskell code. This generates different behaviors, for example with the newPrefer: undefined-keys=apply-defaults
(#2672).What we need do is to get the privileges on the columns for
GRANT INSERT(col1,col2)..; GRANT UPDATE(col1, col2)..
for the roles that are member ofauthenticator
. Then we can remove the Haskell json processing.This would also solve #2446.
The text was updated successfully, but these errors were encountered: