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 create_resource(6, 'Language Features of C++17 Ref Card', 'slides', 2, 1, 'https://www.bfilipek.com', 'Bartłomiej Filipek');
call flashback.add_block('text', 'txt', '');
call flashback.add_block('code', 'cpp', '');
call flashback.create_note_with_name('Language Features of C++17 Ref Card', 1, '');