sapling/eden/mononoke/unbundle_replay/schemas/pushrebaserecording.sql
Thomas Orozco 066cdcfb3d mononoke/unbundle_replay: also report recorded duration
Summary: This will make it easier to compare performance.

Differential Revision: D20674164

fbshipit-source-id: eb1a037b0b060c373c1e87635f52dd228f728c89
2020-03-30 06:25:07 -07:00

21 lines
552 B
SQL

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
CREATE TABLE `pushrebaserecording` (
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
`repo_id` INTEGER NOT NULL,
`ontorev` VARBINARY(40) NOT NULL,
`onto` VARBINARY(512) NOT NULL,
`pushrebase_errmsg` TEXT,
`conflicts` TEXT,
`bundlehandle` TEXT,
`timestamps` TEXT NOT NULL,
`replacements_revs` TEXT,
`ordered_added_revs` TEXT,
`duration_ms` INTEGER
);