OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DistributedLoader.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef DISTRIBUTEDLOADER_H
18 #define DISTRIBUTEDLOADER_H
19 
20 #include "ImportExport/Importer.h"
21 #include "LeafAggregator.h"
22 
24  public:
26  const TableDescriptor* t,
27  LeafAggregator* aggregator)
28  : Loader(parent_session_info.getCatalog(), t) {
29  CHECK(false);
30  }
31 
32  bool load(const std::vector<std::unique_ptr<import_export::TypedImportBuffer>>&
33  import_buffers,
34  const size_t row_count,
35  const Catalog_Namespace::SessionInfo* session_info) override {
36  CHECK(false);
37  return false;
38  }
39 };
40 
41 #endif // DISTRIBUTEDLOADER_H
Loader(Catalog_Namespace::Catalog &c, const TableDescriptor *t, LoadCallbackType load_callback=nullptr)
Definition: Importer.h:565
bool load(const std::vector< std::unique_ptr< import_export::TypedImportBuffer >> &import_buffers, const size_t row_count, const Catalog_Namespace::SessionInfo *session_info) override
DistributedLoader(const Catalog_Namespace::SessionInfo &parent_session_info, const TableDescriptor *t, LeafAggregator *aggregator)
Catalog_Namespace::Catalog & getCatalog() const
Definition: Importer.h:577
#define CHECK(condition)
Definition: Logger.h:291