mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-29 21:36:45 +03:00
We have added a new function, SystemCatalog::upgrade(), which will create a new column in the database and fill it with default values. It uses a reference column to fill the column, which is passed as a std::unordered_map<key, value> value to SystemCatalog::upgrade() function, where key is the target column which needs to be created. In addition, we pass additional std::unordered_map's to SystemCatalog::upgrade() containing information such as the datatypes and colwidths of the target and reference columns, as well as the default value which will be used to fill the target column.
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/* Copyright (C) 2014 InfiniDB, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
// $Id: systemcatalog.h 2101 2013-01-21 14:12:52Z rdempsey $
|
|
|
|
/**
|
|
* @file
|
|
*/
|
|
#pragma once
|
|
|
|
#include "writeengine.h"
|
|
#include <unordered_map>
|
|
#include <utility>
|
|
|
|
using OidTypeT = std::pair<execplan::CalpontSystemCatalog::ColDataType, int>;
|
|
|
|
class SystemCatalog
|
|
{
|
|
public:
|
|
void build();
|
|
void remove();
|
|
int upgrade(const std::unordered_map<int, std::pair<int, bool>>&,
|
|
std::unordered_map<int, OidTypeT>,
|
|
std::unordered_map<int, std::string>);
|
|
|
|
private:
|
|
WriteEngine::WriteEngineWrapper fWriteEngine;
|
|
};
|