2019-02-21 14:54:50 +00:00
|
|
|
// Copyright 2019 Sorint.lab
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package readdb
|
|
|
|
|
|
|
|
var Stmts = []string{
|
|
|
|
// last processed etcd event revision
|
|
|
|
"create table revision (revision bigint, PRIMARY KEY(revision))",
|
|
|
|
|
2019-07-05 08:32:51 +00:00
|
|
|
"create table run (id varchar, grouppath varchar, phase varchar, result varchar, PRIMARY KEY (id, grouppath, phase))",
|
2019-02-21 14:54:50 +00:00
|
|
|
|
2019-03-29 11:15:48 +00:00
|
|
|
"create table rundata (id varchar, data bytea, PRIMARY KEY (id))",
|
2019-02-21 14:54:50 +00:00
|
|
|
|
|
|
|
"create table runevent (sequence varchar, data bytea, PRIMARY KEY (sequence))",
|
|
|
|
|
|
|
|
// changegrouprevision stores the current revision of the changegroup for optimistic locking
|
|
|
|
"create table changegrouprevision (id varchar, revision varchar, PRIMARY KEY (id, revision))",
|
|
|
|
|
2019-04-27 13:16:48 +00:00
|
|
|
// objectstorage
|
|
|
|
"create table revision_ost (revision bigint, PRIMARY KEY(revision))",
|
2019-02-21 14:54:50 +00:00
|
|
|
|
2019-03-29 11:15:48 +00:00
|
|
|
// committedwalsequence stores the last committed wal sequence
|
2019-04-27 13:16:48 +00:00
|
|
|
"create table committedwalsequence_ost (seq varchar, PRIMARY KEY (seq))",
|
2019-03-29 11:15:48 +00:00
|
|
|
|
2019-04-27 13:16:48 +00:00
|
|
|
"create table changegrouprevision_ost (id varchar, revision varchar, PRIMARY KEY (id, revision))",
|
2019-04-01 10:54:43 +00:00
|
|
|
|
2019-07-05 08:32:51 +00:00
|
|
|
"create table run_ost (id varchar, grouppath varchar, phase varchar, result varchar, PRIMARY KEY (id, grouppath, phase))",
|
2019-03-29 11:15:48 +00:00
|
|
|
|
2019-04-27 13:16:48 +00:00
|
|
|
"create table rundata_ost (id varchar, data bytea, PRIMARY KEY (id))",
|
2019-04-01 10:54:43 +00:00
|
|
|
|
2019-04-27 13:16:48 +00:00
|
|
|
"create table runcounter_ost (groupid varchar, counter bigint, PRIMARY KEY (groupid))",
|
2019-02-21 14:54:50 +00:00
|
|
|
}
|