| 514 | } |
| 515 | |
| 516 | Firebird::string getObjectName() const |
| 517 | { |
| 518 | if (ctx_relation) |
| 519 | return ctx_relation->rel_name.c_str(); |
| 520 | if (ctx_procedure) |
| 521 | return ctx_procedure->prc_name.toString(); |
| 522 | return ""; |
| 523 | } |
| 524 | |
| 525 | bool getImplicitJoinField(const MetaName& name, NestConst<ValueExprNode>& node); |
| 526 | WindowMap* getWindowMap(DsqlCompilerScratch* dsqlScratch, WindowClause* windowNode); |
no test coverage detected