| 550 | } |
| 551 | |
| 552 | std::vector<GdaConst::FieldType> OGRTable::GetColTypes(int col) |
| 553 | { |
| 554 | size_t ts = GetColTimeSteps(col); |
| 555 | std::vector<GdaConst::FieldType> ret(ts); |
| 556 | for (size_t t=0; t<ts; ++t) { |
| 557 | ret[t] = GetColType(col, t); |
| 558 | if (ret[t] == GdaConst::placeholder_type) { |
| 559 | throw GdaException("Placeholder found in grouped column."); |
| 560 | } |
| 561 | } |
| 562 | return ret; |
| 563 | } |
| 564 | |
| 565 | GdaConst::FieldType OGRTable::GetColType(int col, int time) |
| 566 | { |
no test coverage detected