I'm trying to use the "test" folder name as dynamic folder path for Snowflake stage creation, which comes after the s3 url.
Copy command runs but returns zero records.
create or replace stage MYSQL_S3 url='s3://myproject/product/BackEnd/'
credentials=(aws_key_id='x' aws_secret_key='s' AWS_TOKEN='s')
file_format = myformat.format_csv;
copy into test from @MYSQL_S3 pattern = 'test/'
Anything is missing?