23 lines
890 B
Plaintext
23 lines
890 B
Plaintext
|
|
insert into test_div(numerator, denominator) values (100, 5);
|
|
insert into test_div(numerator, denominator) values (10000000, 3);
|
|
insert into test_div(numerator, denominator) values (987654321000, 7);
|
|
commit;
|
|
|
|
/*
|
|
This is known to fail. Uncomment as required.
|
|
set bail off;
|
|
insert into test_div(numerator, denominator) values (9876543210000000000, 7);
|
|
set bail on;
|
|
*/
|
|
commit;
|
|
|
|
|
|
|
|
insert into test_blobs( description, file_type, source_file ) values ('boot readme', 'txt', '/boot/boot.readme');
|
|
insert into test_blobs( description, file_type, source_file ) values ('xman help', 'txt', '/usr/share/X11/xman.help');
|
|
insert into test_blobs( description, file_type, source_file ) values ('computer', 'bin', '/usr/share/icons/Adwaita/48x48/devices/computer.png');
|
|
insert into test_blobs( description, file_type, source_file ) values ('git gui icon', 'bin', '/usr/share/git-gui/lib/git-gui.ico');
|
|
|
|
|