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
In the functions load_csv and load_json, we use an auxiliary relation named data to populate the configuration relation for data loading. However, if one's workspace already contains data within the relation data, these operations error out and sources of error are hard to find.
Notice that we cannot yet create an anonymous relation for config in the call load_csv[config], as this is not supported yet for FFI calls. A simple solution would be to generate a random relation name which has little probability for conflicts.
The text was updated successfully, but these errors were encountered:
gbrgr
changed the title
Data may have side effects due to naming conflicts
Data loading may have side effects due to naming conflicts
May 4, 2022
In the functions
load_csv
andload_json
, we use an auxiliary relation nameddata
to populate the configuration relation for data loading. However, if one's workspace already contains data within the relationdata
, these operations error out and sources of error are hard to find.Notice that we cannot yet create an anonymous relation for
config
in the callload_csv[config]
, as this is not supported yet for FFI calls. A simple solution would be to generate a random relation name which has little probability for conflicts.The text was updated successfully, but these errors were encountered: