| 960 | } |
| 961 | |
| 962 | TypePtr getCustomType(const std::string& name) { |
| 963 | auto factories = getTypeFactories(name); |
| 964 | if (factories) { |
| 965 | return factories->getType(); |
| 966 | } |
| 967 | |
| 968 | return nullptr; |
| 969 | } |
| 970 | |
| 971 | exec::CastOperatorPtr getCustomTypeCastOperator(const std::string& name) { |
| 972 | auto factories = getTypeFactories(name); |