cplayground
cplayground copied to clipboard
Store program output as a blob/buffer instead of a varchar/string
Program output is being logged to the database as a varchar. However, this may cause problems since programs can output arbitrary byte sequences. We should change the output type in the server code to be a Buffer (instead of a string), and we should add a database migration to store this output as a blob.