| 724 | } |
| 725 | |
| 726 | static bool hasVolatileKey(const dsc* desc) |
| 727 | { |
| 728 | // International type text has a computed key. |
| 729 | // Different decimal float values sometimes have same keys. |
| 730 | // The same for date/time with time zones. |
| 731 | return (IS_INTL_DATA(desc) || desc->isDecFloat() || desc->isDateTimeTz()); |
| 732 | } |
| 733 | |
| 734 | protected: |
| 735 | void internalOpen(thread_db* tdbb) const override; |
nothing calls this directly
no test coverage detected