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
create procedure add_block(type flashback.block_type, language varchar(10), content text) language plpgsql as $$ begin insert into temp_blocks (t_type, t_language, t_content) values (type, language, content); end; $$;
call flashback.add_block('text', 'txt', '');
call flashback.add_block('code', 'sh', '');
call flashback.create_note_with_name('Black Hat Bash', 1, '');