Skip to content

Commit 1cfd077

Browse files
authored
Merge 2cc4178 into 9f25ade
2 parents 9f25ade + 2cc4178 commit 1cfd077

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

ydb/library/yql/parser/pg_catalog/catalog.cpp

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,6 +1613,29 @@ struct TCatalog {
16131613
})
16141614
{
16151615
if ( GetEnv("YDB_EXPERIMENTAL_PG") == "1"){
1616+
// grafana migration_log
1617+
AllStaticTables.push_back(
1618+
{{"public", "migration_log"}, ERelKind::Relation, 100001}
1619+
);
1620+
AllStaticColumns.push_back(
1621+
{"public", "migration_log", "id", "int"}
1622+
);
1623+
AllStaticColumns.push_back(
1624+
{"public", "migration_log", "migration_id", "character varying(255)"}
1625+
);
1626+
AllStaticColumns.push_back(
1627+
{"public", "migration_log", "sql", "text"}
1628+
);
1629+
AllStaticColumns.push_back(
1630+
{"public", "migration_log", "success", "boolean"}
1631+
);
1632+
AllStaticColumns.push_back(
1633+
{"public", "migration_log", "error", "text"}
1634+
);
1635+
AllStaticColumns.push_back(
1636+
{"public", "migration_log", "timestamp", "timestamp without time zone"}
1637+
);
1638+
16161639
// zabbix config
16171640
AllStaticTables.push_back(
16181641
{{"public", "config"}, ERelKind::Relation, 100001}

0 commit comments

Comments
 (0)