This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "AddPermStaticsAXK", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:GetObject", | |
"Resource": "arn:aws:s3:::<my-bucket-fqdn>/*", | |
"Condition": { |

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL: | |
SELECT 'ALTER TABLE ' | |
|| table_name | |
|| ' DISABLE TRIGGER ALL;' | |
FROM information_schema.TABLES | |
WHERE table_catalog = 'waypoint'; | |
OUTPUT ROWS: | |
ALTER TABLE pg_type DISABLE TRIGGER ALL; |