You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-4839: Fix clang build (#2100)
* Fix clang build * Extern C returned to plugin_instance Co-authored-by: Leonid Fedorov <l.fedorov@mail.corp.ru>
This commit is contained in:
@ -117,7 +117,8 @@ void VirtualTable::addColumn(const SRCP& column)
|
||||
}
|
||||
else // new column type has added, but this code is not updated.
|
||||
{
|
||||
oss << "not supported column type: " << typeid(*(column.get())).name();
|
||||
auto & columnType = *(column.get());
|
||||
oss << "not supported column type: " << typeid(columnType).name();
|
||||
throw runtime_error(oss.str());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user