Skip to content

Commit

Permalink
No gzip for debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <git@stefan-marr.de>
  • Loading branch information
smarr committed Mar 19, 2024
1 parent 02868ff commit fb41ec2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/db/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -808,8 +808,9 @@ export abstract class Database {
Experiment.id = ${expId}
ORDER BY
runId, trialId, cmdline, invocation, iteration, criterion
) TO PROGRAM 'gzip -9 > ${outputFile}'
) TO '${outputFile}'
WITH (FORMAT csv, HEADER true)`;
//) TO PROGRAM 'gzip -9 > ${outputFile}'
const result = await this.query({
text: query
});
Expand Down

0 comments on commit fb41ec2

Please sign in to comment.