We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb69ae commit f0ebc85Copy full SHA for f0ebc85
production/catalog/src/ddl_executor.cpp
@@ -8,6 +8,7 @@
8
#include <memory>
9
10
#include "gaia/common.hpp"
11
+#include "gaia/db/catalog.hpp"
12
#include "gaia/exception.hpp"
13
#include "db_helpers.hpp"
14
#include "fbs_generator.hpp"
@@ -693,7 +694,7 @@ inline gaia_id_t ddl_executor_t::find_db_id_no_lock(const string& dbname) const
693
694
695
string ddl_executor_t::get_full_table_name(const string& db, const string& table)
696
{
- if (db.empty())
697
+ if (db.empty() || db == c_empty_db_name)
698
699
return table;
700
}
0 commit comments