SELECT * FROM iasql_install('<modules>');
INSERT INTO bucket (name) VALUES ('<bucket>');
SELECT * FROM distribution WHERE caller_reference='<s3CallerReference>';
INSERT INTO distribution (caller_reference, comment, enabled, is_ipv6_enabled, default_cache_behavior, origins )
VALUES ('<callerReference>', 'a comment', true, false, '<behaviorString>', '<originsString>');
SELECT * FROM distribution WHERE caller_reference='<callerReference>';
UPDATE distribution SET comment='new comment' WHERE caller_reference='<callerReference>';
SELECT * FROM distribution WHERE caller_reference='<callerReference>' AND comment='new comment';
DELETE FROM distribution
WHERE caller_reference = '<callerReference>';
DELETE FROM bucket WHERE name = '<bucket>';