OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp} Namespace Reference

Functions

void set_null (import_export::TypedImportBuffer *import_buffer)
 
void populate_import_buffers_for_catalog_users (const std::list< Catalog_Namespace::UserMetadata > &all_users, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
std::string get_user_name (int32_t user_id)
 
std::string get_table_type (const TableDescriptor &td)
 
std::string get_table_ddl (int32_t db_id, const TableDescriptor &td)
 
void populate_import_buffers_for_catalog_tables (const std::map< int32_t, std::vector< TableDescriptor >> &tables_by_database, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
std::vector< std::string > get_data_sources (const std::string &dashboard_metadata)
 
void populate_import_buffers_for_catalog_dashboards (const std::map< int32_t, std::vector< DashboardDescriptor >> &dashboards_by_database, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
std::vector< std::string > get_permissions (const AccessPrivileges privileges, int32_t object_type, int32_t object_id)
 
std::string get_object_type_str (int32_t object_type)
 
void populate_import_buffers_for_catalog_permissions (const std::vector< ObjectRoleDescriptor > &object_permissions, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
void populate_import_buffers_for_catalog_databases (const std::list< Catalog_Namespace::DBMetadata > &databases, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
void populate_import_buffers_for_catalog_roles (const std::set< std::string > &roles, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
void populate_import_buffers_for_catalog_role_assignments (const std::map< std::string, std::vector< std::string >> &user_names_by_role_, std::map< std::string, import_export::TypedImportBuffer * > &import_buffers)
 
std::map< int32_t, std::vector
< TableDescriptor > > 
get_all_tables ()
 
std::map< int32_t, std::vector
< DashboardDescriptor > > 
get_all_dashboards ()
 
std::map< std::string,
std::vector< std::string > > 
get_all_role_assignments ()
 

Function Documentation

std::map<int32_t, std::vector<DashboardDescriptor> > foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_all_dashboards ( )

Definition at line 455 of file InternalCatalogDataWrapper.cpp.

References Catalog_Namespace::SysCatalog::instance(), and shared::kInfoSchemaDbName.

Referenced by foreign_storage::InternalCatalogDataWrapper::initializeObjectsForTable().

455  {
456  std::map<int32_t, std::vector<DashboardDescriptor>> dashboards_by_database;
457  auto& sys_catalog = Catalog_Namespace::SysCatalog::instance();
458  for (const auto& catalog : sys_catalog.getCatalogsForAllDbs()) {
459  if (catalog->name() != shared::kInfoSchemaDbName) {
460  for (const auto& dashboard : catalog->getAllDashboardsMetadataCopy()) {
461  dashboards_by_database[catalog->getDatabaseId()].emplace_back(dashboard);
462  }
463  }
464  }
465  return dashboards_by_database;
466 }
const std::string kInfoSchemaDbName
static SysCatalog & instance()
Definition: SysCatalog.h:343

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::map<std::string, std::vector<std::string> > foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_all_role_assignments ( )

Definition at line 468 of file InternalCatalogDataWrapper.cpp.

References Catalog_Namespace::SysCatalog::instance().

Referenced by foreign_storage::InternalCatalogDataWrapper::initializeObjectsForTable().

468  {
469  auto& sys_catalog = Catalog_Namespace::SysCatalog::instance();
470  const auto& users = sys_catalog.getAllUserMetadata();
471  std::map<std::string, std::vector<std::string>> user_names_by_role;
472  for (const auto& user : users) {
473  for (const auto& role :
474  sys_catalog.getRoles(false, user.isSuper, user.userName, true)) {
475  user_names_by_role[role].emplace_back(user.userName);
476  }
477  }
478  return user_names_by_role;
479 }
static SysCatalog & instance()
Definition: SysCatalog.h:343

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::map<int32_t, std::vector<TableDescriptor> > foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_all_tables ( )

Definition at line 442 of file InternalCatalogDataWrapper.cpp.

References Catalog_Namespace::SysCatalog::instance(), and shared::kInfoSchemaDbName.

Referenced by foreign_storage::InternalCatalogDataWrapper::initializeObjectsForTable().

442  {
443  std::map<int32_t, std::vector<TableDescriptor>> tables_by_database;
444  auto& sys_catalog = Catalog_Namespace::SysCatalog::instance();
445  for (const auto& catalog : sys_catalog.getCatalogsForAllDbs()) {
446  if (catalog->name() != shared::kInfoSchemaDbName) {
447  for (const auto& td : catalog->getAllTableMetadataCopy()) {
448  tables_by_database[catalog->getDatabaseId()].emplace_back(td);
449  }
450  }
451  }
452  return tables_by_database;
453 }
const std::string kInfoSchemaDbName
static SysCatalog & instance()
Definition: SysCatalog.h:343

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::vector<std::string> foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_data_sources ( const std::string &  dashboard_metadata)

Definition at line 163 of file InternalCatalogDataWrapper.cpp.

References foreign_storage::json_utils::get_optional_string_value_from_object(), split(), and strip().

Referenced by populate_import_buffers_for_catalog_dashboards().

163  {
164  rapidjson::Document document;
165  document.Parse(dashboard_metadata);
166  if (!document.IsObject()) {
167  return {};
168  }
169  auto data_sources_str =
171  std::vector<std::string> data_sources;
172  if (data_sources_str.has_value()) {
173  data_sources = split(data_sources_str.value(), ",");
174  for (auto it = data_sources.begin(); it != data_sources.end();) {
175  *it = strip(*it);
176  static std::regex parameter_regex{"\\$\\{.+\\}"};
177  if (std::regex_match(*it, parameter_regex)) {
178  // Remove custom SQL sources.
179  it = data_sources.erase(it);
180  } else {
181  it++;
182  }
183  }
184  }
185  return data_sources;
186 }
std::string strip(std::string_view str)
trim any whitespace from the left and right ends of a string
std::vector< std::string > split(std::string_view str, std::string_view delim, std::optional< size_t > maxsplit)
split apart a string into a vector of substrings
std::optional< std::string > get_optional_string_value_from_object(const rapidjson::Value &object, const std::string &key)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::string foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_object_type_str ( int32_t  object_type)

Definition at line 339 of file InternalCatalogDataWrapper.cpp.

References DashboardDBObjectType, DatabaseDBObjectType, ServerDBObjectType, TableDBObjectType, run_benchmark_import::type, UNREACHABLE, and ViewDBObjectType.

Referenced by populate_import_buffers_for_catalog_permissions().

339  {
340  std::string object_type_str;
341  auto type = static_cast<DBObjectType>(object_type);
343  object_type_str = "database";
344  } else if (type == DBObjectType::TableDBObjectType) {
345  object_type_str = "table";
347  object_type_str = "dashboard";
348  } else if (type == DBObjectType::ViewDBObjectType) {
349  object_type_str = "view";
350  } else if (type == DBObjectType::ServerDBObjectType) {
351  object_type_str = "server";
352  } else {
353  UNREACHABLE() << "Unexpected object type: " << object_type;
354  }
355  return object_type_str;
356 }
DBObjectType
Definition: DBObject.h:40
#define UNREACHABLE()
Definition: Logger.h:337

+ Here is the caller graph for this function:

std::vector<std::string> foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_permissions ( const AccessPrivileges  privileges,
int32_t  object_type,
int32_t  object_id 
)

Definition at line 224 of file InternalCatalogDataWrapper.cpp.

References AccessPrivileges::ACCESS, AccessPrivileges::ALL_DASHBOARD, AccessPrivileges::ALL_DATABASE, AccessPrivileges::ALL_SERVER, AccessPrivileges::ALL_TABLE, AccessPrivileges::ALL_VIEW, AccessPrivileges::ALTER_SERVER, AccessPrivileges::ALTER_TABLE, AccessPrivileges::CREATE_DASHBOARD, AccessPrivileges::CREATE_SERVER, AccessPrivileges::CREATE_TABLE, AccessPrivileges::CREATE_VIEW, DashboardDBObjectType, DatabaseDBObjectType, AccessPrivileges::DELETE_DASHBOARD, AccessPrivileges::DELETE_FROM_TABLE, AccessPrivileges::DROP_SERVER, AccessPrivileges::DROP_TABLE, AccessPrivileges::DROP_VIEW, AccessPrivileges::EDIT_DASHBOARD, AccessPrivileges::hasPermission(), AccessPrivileges::INSERT_INTO_TABLE, AccessPrivileges::privileges, AccessPrivileges::SELECT_FROM_TABLE, AccessPrivileges::SELECT_FROM_VIEW, AccessPrivileges::SERVER_USAGE, ServerDBObjectType, spatial_type::suffix(), TableDBObjectType, AccessPrivileges::TRUNCATE_TABLE, run_benchmark_import::type, UNREACHABLE, AccessPrivileges::UPDATE_IN_TABLE, AccessPrivileges::VIEW_DASHBOARD, AccessPrivileges::VIEW_SQL_EDITOR, and ViewDBObjectType.

Referenced by populate_import_buffers_for_catalog_permissions().

226  {
227  std::vector<std::string> permissions;
228  auto type = static_cast<DBObjectType>(object_type);
231  permissions.emplace_back("all");
232  } else {
234  permissions.emplace_back("view_sql_editor");
235  }
237  permissions.emplace_back("access");
238  }
239  }
240  } else if (type == DBObjectType::TableDBObjectType) {
242  permissions.emplace_back("all");
243  } else {
244  std::string suffix;
245  if (object_id == -1) {
246  suffix = " table";
247  }
249  permissions.emplace_back("select" + suffix);
250  }
252  permissions.emplace_back("insert" + suffix);
253  }
255  permissions.emplace_back("update" + suffix);
256  }
258  permissions.emplace_back("delete" + suffix);
259  }
261  permissions.emplace_back("truncate" + suffix);
262  }
264  permissions.emplace_back("alter" + suffix);
265  }
267  permissions.emplace_back("drop" + suffix);
268  }
270  permissions.emplace_back("create table");
271  }
272  }
275  permissions.emplace_back("all");
276  } else {
277  std::string suffix;
278  if (object_id == -1) {
279  suffix = " dashboard";
280  }
282  permissions.emplace_back("view" + suffix);
283  }
285  permissions.emplace_back("edit" + suffix);
286  }
288  permissions.emplace_back("delete" + suffix);
289  }
291  permissions.emplace_back("create dashboard");
292  }
293  }
294  } else if (type == DBObjectType::ViewDBObjectType) {
296  permissions.emplace_back("all");
297  } else {
298  std::string suffix;
299  if (object_id == -1) {
300  suffix = " view";
301  }
303  permissions.emplace_back("select" + suffix);
304  }
306  permissions.emplace_back("drop" + suffix);
307  }
309  permissions.emplace_back("create view");
310  }
311  }
312  } else if (type == DBObjectType::ServerDBObjectType) {
314  permissions.emplace_back("all");
315  } else {
316  std::string suffix;
317  if (object_id == -1) {
318  suffix = " server";
319  }
321  permissions.emplace_back("alter" + suffix);
322  }
324  permissions.emplace_back("usage" + suffix);
325  }
327  permissions.emplace_back("drop" + suffix);
328  }
330  permissions.emplace_back("create server");
331  }
332  }
333  } else {
334  UNREACHABLE() << "Unexpected object type: " << object_type;
335  }
336  return permissions;
337 }
static const AccessPrivileges VIEW_SQL_EDITOR
Definition: DBObject.h:152
static const AccessPrivileges VIEW_DASHBOARD
Definition: DBObject.h:171
static const AccessPrivileges DROP_SERVER
Definition: DBObject.h:189
static const AccessPrivileges ALL_DATABASE
Definition: DBObject.h:151
static const AccessPrivileges ALTER_TABLE
Definition: DBObject.h:165
DBObjectType
Definition: DBObject.h:40
static const AccessPrivileges TRUNCATE_TABLE
Definition: DBObject.h:164
static const AccessPrivileges INSERT_INTO_TABLE
Definition: DBObject.h:161
static const AccessPrivileges CREATE_DASHBOARD
Definition: DBObject.h:170
static const AccessPrivileges SERVER_USAGE
Definition: DBObject.h:191
#define UNREACHABLE()
Definition: Logger.h:337
static const AccessPrivileges SELECT_FROM_TABLE
Definition: DBObject.h:160
std::string suffix(SQLTypes type)
Definition: Codegen.cpp:69
static const AccessPrivileges ALL_VIEW
Definition: DBObject.h:177
static const AccessPrivileges ALTER_SERVER
Definition: DBObject.h:190
static const AccessPrivileges DROP_TABLE
Definition: DBObject.h:159
static const AccessPrivileges ALL_SERVER
Definition: DBObject.h:187
static const AccessPrivileges CREATE_SERVER
Definition: DBObject.h:188
static const AccessPrivileges DELETE_FROM_TABLE
Definition: DBObject.h:163
static const AccessPrivileges CREATE_TABLE
Definition: DBObject.h:158
static const AccessPrivileges SELECT_FROM_VIEW
Definition: DBObject.h:180
static const AccessPrivileges ALL_DASHBOARD
Definition: DBObject.h:169
static const AccessPrivileges ACCESS
Definition: DBObject.h:153
static const AccessPrivileges ALL_TABLE
Definition: DBObject.h:157
static const AccessPrivileges DROP_VIEW
Definition: DBObject.h:179
static const AccessPrivileges CREATE_VIEW
Definition: DBObject.h:178
static const AccessPrivileges DELETE_DASHBOARD
Definition: DBObject.h:173
int64_t privileges
Definition: DBObject.h:133
static const AccessPrivileges EDIT_DASHBOARD
Definition: DBObject.h:172
static const AccessPrivileges UPDATE_IN_TABLE
Definition: DBObject.h:162
bool hasPermission(int permission) const
Definition: DBObject.h:141

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::string foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_table_ddl ( int32_t  db_id,
const TableDescriptor td 
)

Definition at line 94 of file InternalCatalogDataWrapper.cpp.

References CHECK, Catalog_Namespace::SysCatalog::getCatalog(), Catalog_Namespace::SysCatalog::instance(), foreign_storage::kDeletedValueIndicator, and TableDescriptor::tableId.

Referenced by populate_import_buffers_for_catalog_tables().

94  {
96  CHECK(catalog);
97  auto ddl = catalog->dumpCreateTable(td.tableId);
98  if (!ddl.has_value()) {
99  // It is possible for the table to be concurrently deleted while querying the system
100  // table.
101  return kDeletedValueIndicator;
102  }
103  return ddl.value();
104 }
constexpr const char * kDeletedValueIndicator
static SysCatalog & instance()
Definition: SysCatalog.h:343
std::shared_ptr< Catalog > getCatalog(const std::string &dbName)
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::string foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_table_type ( const TableDescriptor td)

Definition at line 82 of file InternalCatalogDataWrapper.cpp.

References TableDescriptor::isForeignTable(), TableDescriptor::isTemporaryTable(), and TableDescriptor::isView.

Referenced by populate_import_buffers_for_catalog_tables().

82  {
83  std::string table_type{"DEFAULT"};
84  if (td.isView) {
85  table_type = "VIEW";
86  } else if (td.isTemporaryTable()) {
87  table_type = "TEMPORARY";
88  } else if (td.isForeignTable()) {
89  table_type = "FOREIGN";
90  }
91  return table_type;
92 }
bool isForeignTable() const
bool isTemporaryTable() const

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::string foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::get_user_name ( int32_t  user_id)

Definition at line 71 of file InternalCatalogDataWrapper.cpp.

References Catalog_Namespace::SysCatalog::instance(), foreign_storage::kDeletedValueIndicator, and Catalog_Namespace::UserMetadata::userName.

Referenced by populate_import_buffers_for_catalog_dashboards(), populate_import_buffers_for_catalog_databases(), populate_import_buffers_for_catalog_permissions(), and populate_import_buffers_for_catalog_tables().

71  {
72  Catalog_Namespace::UserMetadata user_metadata;
73  auto& sys_catalog = Catalog_Namespace::SysCatalog::instance();
74  if (sys_catalog.getMetadataForUserById(user_id, user_metadata)) {
75  return user_metadata.userName;
76  } else {
77  // User has been deleted.
79  }
80 }
constexpr const char * kDeletedValueIndicator
static SysCatalog & instance()
Definition: SysCatalog.h:343

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_dashboards ( const std::map< int32_t, std::vector< DashboardDescriptor >> &  dashboards_by_database,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 188 of file InternalCatalogDataWrapper.cpp.

References get_data_sources(), foreign_storage::get_db_name(), and get_user_name().

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

190  {
191  for (const auto& [db_id, dashboards] : dashboards_by_database) {
192  for (const auto& dashboard : dashboards) {
193  if (import_buffers.find("database_id") != import_buffers.end()) {
194  import_buffers["database_id"]->addInt(db_id);
195  }
196  if (import_buffers.find("database_name") != import_buffers.end()) {
197  import_buffers["database_name"]->addString(get_db_name(db_id));
198  }
199  if (import_buffers.find("dashboard_id") != import_buffers.end()) {
200  import_buffers["dashboard_id"]->addInt(dashboard.dashboardId);
201  }
202  if (import_buffers.find("dashboard_name") != import_buffers.end()) {
203  import_buffers["dashboard_name"]->addString(dashboard.dashboardName);
204  }
205  if (import_buffers.find("owner_id") != import_buffers.end()) {
206  import_buffers["owner_id"]->addInt(dashboard.userId);
207  }
208  if (import_buffers.find("owner_user_name") != import_buffers.end()) {
209  import_buffers["owner_user_name"]->addString(get_user_name(dashboard.userId));
210  }
211  if (import_buffers.find("last_updated_at") != import_buffers.end()) {
212  auto& buffer = import_buffers["last_updated_at"];
213  import_buffers["last_updated_at"]->add_value(
214  buffer->getColumnDesc(), dashboard.updateTime, false, {});
215  }
216  if (import_buffers.find("data_sources") != import_buffers.end()) {
217  import_buffers["data_sources"]->addStringArray(
218  get_data_sources(dashboard.dashboardMetadata));
219  }
220  }
221  }
222 }
std::vector< std::string > get_data_sources(const std::string &dashboard_metadata)
std::string get_db_name(int32_t db_id)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_databases ( const std::list< Catalog_Namespace::DBMetadata > &  databases,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 399 of file InternalCatalogDataWrapper.cpp.

References get_user_name().

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

401  {
402  for (const auto& db : databases) {
403  if (import_buffers.find("database_id") != import_buffers.end()) {
404  import_buffers["database_id"]->addInt(db.dbId);
405  }
406  if (import_buffers.find("database_name") != import_buffers.end()) {
407  import_buffers["database_name"]->addString(db.dbName);
408  }
409  if (import_buffers.find("owner_id") != import_buffers.end()) {
410  import_buffers["owner_id"]->addInt(db.dbOwner);
411  }
412  if (import_buffers.find("owner_user_name") != import_buffers.end()) {
413  import_buffers["owner_user_name"]->addString(get_user_name(db.dbOwner));
414  }
415  }
416 }

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_permissions ( const std::vector< ObjectRoleDescriptor > &  object_permissions,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 358 of file InternalCatalogDataWrapper.cpp.

References foreign_storage::get_db_name(), get_object_type_str(), get_permissions(), and get_user_name().

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

360  {
361  for (const auto& permission : object_permissions) {
362  if (import_buffers.find("role_name") != import_buffers.end()) {
363  import_buffers["role_name"]->addString(permission.roleName);
364  }
365  if (import_buffers.find("is_user_role") != import_buffers.end()) {
366  import_buffers["is_user_role"]->addBoolean(permission.roleType);
367  }
368  if (import_buffers.find("database_id") != import_buffers.end()) {
369  import_buffers["database_id"]->addInt(permission.dbId);
370  }
371  if (import_buffers.find("database_name") != import_buffers.end()) {
372  import_buffers["database_name"]->addString(get_db_name(permission.dbId));
373  }
374  if (import_buffers.find("object_name") != import_buffers.end()) {
375  import_buffers["object_name"]->addString(permission.objectName);
376  }
377  if (import_buffers.find("object_id") != import_buffers.end()) {
378  import_buffers["object_id"]->addInt(permission.objectId);
379  }
380  if (import_buffers.find("object_owner_id") != import_buffers.end()) {
381  import_buffers["object_owner_id"]->addInt(permission.objectOwnerId);
382  }
383  if (import_buffers.find("object_owner_user_name") != import_buffers.end()) {
384  import_buffers["object_owner_user_name"]->addString(
385  get_user_name(permission.objectOwnerId));
386  }
387  if (import_buffers.find("object_permission_type") != import_buffers.end()) {
388  import_buffers["object_permission_type"]->addString(
389  get_object_type_str(permission.objectType));
390  }
391  if (import_buffers.find("object_permissions") != import_buffers.end()) {
392  auto permissions =
393  get_permissions(permission.privs, permission.objectType, permission.objectId);
394  import_buffers["object_permissions"]->addStringArray(permissions);
395  }
396  }
397 }
std::vector< std::string > get_permissions(const AccessPrivileges privileges, int32_t object_type, int32_t object_id)
std::string get_db_name(int32_t db_id)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_role_assignments ( const std::map< std::string, std::vector< std::string >> &  user_names_by_role_,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 427 of file InternalCatalogDataWrapper.cpp.

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

429  {
430  for (const auto& [role, user_names] : user_names_by_role_) {
431  for (const auto& user_name : user_names) {
432  if (import_buffers.find("role_name") != import_buffers.end()) {
433  import_buffers["role_name"]->addString(role);
434  }
435  if (import_buffers.find("user_name") != import_buffers.end()) {
436  import_buffers["user_name"]->addString(user_name);
437  }
438  }
439  }
440 }

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_roles ( const std::set< std::string > &  roles,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 418 of file InternalCatalogDataWrapper.cpp.

References CHECK.

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

420  {
421  for (const auto& role : roles) {
422  CHECK(import_buffers.find("role_name") != import_buffers.end());
423  import_buffers["role_name"]->addString(role);
424  }
425 }
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_tables ( const std::map< int32_t, std::vector< TableDescriptor >> &  tables_by_database,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 106 of file InternalCatalogDataWrapper.cpp.

References foreign_storage::get_db_name(), get_table_ddl(), get_table_type(), get_user_name(), and run_benchmark_import::tables.

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

108  {
109  for (const auto& [db_id, tables] : tables_by_database) {
110  for (const auto& table : tables) {
111  if (import_buffers.find("database_id") != import_buffers.end()) {
112  import_buffers["database_id"]->addInt(db_id);
113  }
114  if (import_buffers.find("database_name") != import_buffers.end()) {
115  import_buffers["database_name"]->addString(get_db_name(db_id));
116  }
117  if (import_buffers.find("table_id") != import_buffers.end()) {
118  import_buffers["table_id"]->addInt(table.tableId);
119  }
120  if (import_buffers.find("table_name") != import_buffers.end()) {
121  import_buffers["table_name"]->addString(table.tableName);
122  }
123  if (import_buffers.find("owner_id") != import_buffers.end()) {
124  import_buffers["owner_id"]->addInt(table.userId);
125  }
126  if (import_buffers.find("owner_user_name") != import_buffers.end()) {
127  import_buffers["owner_user_name"]->addString(get_user_name(table.userId));
128  }
129  if (import_buffers.find("column_count") != import_buffers.end()) {
130  import_buffers["column_count"]->addInt(table.nColumns);
131  }
132  if (import_buffers.find("table_type") != import_buffers.end()) {
133  import_buffers["table_type"]->addString(get_table_type(table));
134  }
135  if (import_buffers.find("view_sql") != import_buffers.end()) {
136  import_buffers["view_sql"]->addString(table.viewSQL);
137  }
138  if (import_buffers.find("max_fragment_size") != import_buffers.end()) {
139  import_buffers["max_fragment_size"]->addInt(table.maxFragRows);
140  }
141  if (import_buffers.find("max_chunk_size") != import_buffers.end()) {
142  import_buffers["max_chunk_size"]->addBigint(table.maxChunkSize);
143  }
144  if (import_buffers.find("fragment_page_size") != import_buffers.end()) {
145  import_buffers["fragment_page_size"]->addInt(table.fragPageSize);
146  }
147  if (import_buffers.find("max_rows") != import_buffers.end()) {
148  import_buffers["max_rows"]->addBigint(table.maxRows);
149  }
150  if (import_buffers.find("max_rollback_epochs") != import_buffers.end()) {
151  import_buffers["max_rollback_epochs"]->addInt(table.maxRollbackEpochs);
152  }
153  if (import_buffers.find("shard_count") != import_buffers.end()) {
154  import_buffers["shard_count"]->addInt(table.nShards);
155  }
156  if (import_buffers.find("ddl_statement") != import_buffers.end()) {
157  import_buffers["ddl_statement"]->addString(get_table_ddl(db_id, table));
158  }
159  }
160  }
161 }
std::string get_table_ddl(int32_t db_id, const TableDescriptor &td)
std::string get_db_name(int32_t db_id)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::populate_import_buffers_for_catalog_users ( const std::list< Catalog_Namespace::UserMetadata > &  all_users,
std::map< std::string, import_export::TypedImportBuffer * > &  import_buffers 
)

Definition at line 42 of file InternalCatalogDataWrapper.cpp.

References foreign_storage::get_db_name(), and set_null().

Referenced by foreign_storage::InternalCatalogDataWrapper::populateChunkBuffersForTable().

44  {
45  for (const auto& user : all_users) {
46  if (import_buffers.find("user_id") != import_buffers.end()) {
47  import_buffers["user_id"]->addInt(user.userId);
48  }
49  if (import_buffers.find("user_name") != import_buffers.end()) {
50  import_buffers["user_name"]->addString(user.userName);
51  }
52  if (import_buffers.find("is_super_user") != import_buffers.end()) {
53  import_buffers["is_super_user"]->addBoolean(user.isSuper);
54  }
55  if (import_buffers.find("default_db_id") != import_buffers.end()) {
56  import_buffers["default_db_id"]->addInt(user.defaultDbId);
57  }
58  if (import_buffers.find("default_db_name") != import_buffers.end()) {
59  if (user.defaultDbId > 0) {
60  import_buffers["default_db_name"]->addString(get_db_name(user.defaultDbId));
61  } else {
62  set_null(import_buffers["default_db_name"]);
63  }
64  }
65  if (import_buffers.find("can_login") != import_buffers.end()) {
66  import_buffers["can_login"]->addBoolean(user.can_login);
67  }
68  }
69 }
CONSTEXPR DEVICE void set_null(T &value)
std::string get_db_name(int32_t db_id)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void foreign_storage::anonymous_namespace{InternalCatalogDataWrapper.cpp}::set_null ( import_export::TypedImportBuffer import_buffer)

Definition at line 38 of file InternalCatalogDataWrapper.cpp.

References import_export::TypedImportBuffer::add_value(), and import_export::TypedImportBuffer::getColumnDesc().

38  {
39  import_buffer->add_value(import_buffer->getColumnDesc(), "", true, {});
40 }
const ColumnDescriptor * getColumnDesc() const
Definition: Importer.h:319
void add_value(const ColumnDescriptor *cd, const std::string_view val, const bool is_null, const CopyParams &copy_params, const bool check_not_null=true)
Definition: Importer.cpp:528

+ Here is the call graph for this function: