| 34 | class ExecuteSQL : public core::Processor { |
| 35 | public: |
| 36 | explicit ExecuteSQL(const std::string &name, utils::Identifier uuid = utils::Identifier()) |
| 37 | : Processor(name, uuid), |
| 38 | logger_(logging::LoggerFactory<ExecuteSQL>::getLogger()) { |
| 39 | } |
| 40 | |
| 41 | static core::Property ConnectionURL; |
| 42 | static core::Property SQLStatement; |