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
The sql: GRANT UPDATE ("time") ON x.transaction TO x; leads to a pg_dump containing: GRANT UPDATE("time") ON TABLE x.transaction TO x;
pg_diff then can't find this column, but when the dump is changed to: GRANT UPDATE(time) ON TABLE x.transaction TO x;
there is no longer an issue, the problem is that this is not how it is dumped.
The dumped line is correct, the column does exist.
It appears that quoted reserved keywords used as column names aren't handled properly by apgdiff:
This happens in
2.7.0
. In2.6.0
it would result in aNullPointerException
.The text was updated successfully, but these errors were encountered: