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 LocalFS store will not match a filename prefix, it only matches folder prefixes:
if a file like /tests/users-2021-10-12.csv exists in the base of a LocalFS store.
a query for /tests will return the file
a query for /tests/users- will not return the file
This is different behavior from other store types that would return the file in both cases. This can cause issues when using creating an application that can operate with multiple different cloudstorage types.
The LocalFS store will not match a filename prefix, it only matches folder prefixes:
if a file like
/tests/users-2021-10-12.csv
exists in the base of a LocalFS store./tests
will return the file/tests/users-
will not return the fileThis is different behavior from other store types that would return the file in both cases. This can cause issues when using creating an application that can operate with multiple different cloudstorage types.
SFTP (which has operates on a similar file system) has been built to behave the same as other store providers.
The text was updated successfully, but these errors were encountered: