File: shovey.sql

package info (click to toggle)
goiardi 0.11.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,708 kB
  • sloc: sql: 4,994; makefile: 156; sh: 95; python: 30
file content (9 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
-- Verify shovey

BEGIN;

SELECT id, run_id, command, status, timeout, quorum, created_at, updated_at, organization_id FROM goiardi.shoveys WHERE false;
SELECT id, shovey_uuid, shovey_id, node_name, status, ack_time, end_time, error, exit_status FROM goiardi.shovey_runs WHERE false;
SELECT id, shovey_run_id, seq, output_type, output, is_last, created_at FROM goiardi.shovey_run_streams WHERE false;

ROLLBACK;