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
Dropping table when if_exists=‘replace’ will fail if the table has any objects, like a view, depending on it. Also, some databases like Oracle will end a transaction implicitly when a DLL statement like 'drop table' is issued.
Describe the solution you'd like
Better alternative would be to issue 'truncate table' command instead.
API breaking implications
Should not have any changes on API
Describe alternatives you've considered
As above or a new flag if_exists=‘truncate’
salvob41, igonro, blizrys, vebjorre, yonatanc1 and 10 more