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
if i have an encrypted column named address, and i rename the column to address_new, the decrypted view's address and decrypted_address do not get updated
i also can’t delete the address_new column, as it throws the following error: Failed to delete address_new: property cascade should not exist
The text was updated successfully, but these errors were encountered:
This one is tricky because having the event fire for all ALTER TABLE statements might be overly aggressive, and we're not sure what other event triggers may be firing on the same event. I think we should wait and see what comes out of the work on adding support for JSON representation of the parsed SQL in a ddl_command_start trigger, that way we can fire the trigger, look at the parsed tree, and verify that we're only firing on tables that actually contain encrypted columns.
if i have an encrypted column named
address
, and i rename the column toaddress_new
, the decrypted view'saddress
anddecrypted_address
do not get updatedi also can’t delete the
address_new
column, as it throws the following error:Failed to delete address_new: property cascade should not exist
The text was updated successfully, but these errors were encountered: