DRESSIPI BUILD #2; some queries are hardcoded + bug fixes (still in progress)
This commit is contained in:
@@ -33,10 +33,11 @@ public:
|
||||
"Unable to execute query (executor returned false)");
|
||||
}
|
||||
return result;
|
||||
} catch (CypherLexicalError &e) {
|
||||
logger.error("CypherLexicalError: {}", std::string(e.what()));
|
||||
throw e;
|
||||
} catch (QueryEngineException &e) {
|
||||
// in this case something fatal went wrong
|
||||
logger.error("QueryEngineException: {}", std::string(e.what()));
|
||||
// return false;
|
||||
throw e;
|
||||
} catch (std::exception &e) {
|
||||
throw e;
|
||||
|
||||
@@ -46,7 +46,7 @@ std::string code_line(const std::string &format_str, const Args &... args)
|
||||
}
|
||||
|
||||
using name_properties_t = std::vector<std::pair<std::string, Property>>;
|
||||
using indices_t = std::map<std::string, int>;
|
||||
using indices_t = std::map<std::string, long>;
|
||||
|
||||
auto query_properties(indices_t &indices, properties_t &values)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user