| 1871 | } |
| 1872 | |
| 1873 | bool sqliteOperation::deleteLane(const uint64_t& road_pkid, const uint32_t& section_id, const int8_t& lane_id) { |
| 1874 | char sql[512]; |
| 1875 | sprintf(sql, |
| 1876 | "DELETE FROM " LANE_TABLE |
| 1877 | " WHERE road_pkid = %llu AND " |
| 1878 | "section_id = %d AND lane_id = %d", |
| 1879 | road_pkid, section_id, lane_id); |
| 1880 | return sqlitePackage::execSql(dbPtr, sql); |
| 1881 | } |
| 1882 | |
| 1883 | bool sqliteOperation::deleteLaneBoundary(const uint64_t& boundary_pkid) { |
| 1884 | char sql[512]; |
no outgoing calls
no test coverage detected