| 165 | } |
| 166 | |
| 167 | void MetadataBuilder::setOwner(CheckStatusWrapper* status, unsigned index, const char* owner) |
| 168 | { |
| 169 | try |
| 170 | { |
| 171 | MutexLockGuard g(mtx, FB_FUNCTION); |
| 172 | |
| 173 | indexError(index, "setOwner"); |
| 174 | msgMetadata->items[index].owner = owner; |
| 175 | } |
| 176 | catch (const Exception& ex) |
| 177 | { |
| 178 | ex.stuffException(status); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | void MetadataBuilder::setAlias(CheckStatusWrapper* status, unsigned index, const char* alias) |
| 183 | { |