← Back to context Comment by lysecret 3 days ago Nice does this also allow me to write to parquet from my Postgres table? 2 comments lysecret Reply mslot 3 days ago Yes, just COPY table TO 's3://mybucket/data.parquet'Or COPY table TO STDOUT WITH (format 'parquet') if you need it on the client side. lysecret 3 days ago Ong yes it works this would have made my past job so much easier.
mslot 3 days ago Yes, just COPY table TO 's3://mybucket/data.parquet'Or COPY table TO STDOUT WITH (format 'parquet') if you need it on the client side.
Yes, just COPY table TO 's3://mybucket/data.parquet'
Or COPY table TO STDOUT WITH (format 'parquet') if you need it on the client side.
Ong yes it works this would have made my past job so much easier.