lbug 0.16.0

An in-process property graph database management system built for query speed and scalability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "binder/visitor/confidential_statement_analyzer.h"

#include "binder/bound_standalone_call.h"
#include "main/db_config.h"

using namespace lbug::common;

namespace lbug {
namespace binder {

void ConfidentialStatementAnalyzer::visitStandaloneCall(const BoundStatement& boundStatement) {
    auto& standaloneCall = boundStatement.constCast<BoundStandaloneCall>();
    confidentialStatement = standaloneCall.getOption()->isConfidential;
}

} // namespace binder
} // namespace lbug