MCPcopy Create free account
hub / github.com/Tencent/TAD_Sim / deleteLane

Method deleteLane

common/map_sdk/mapdb/src/sqlite_operation.cpp:1873–1881  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1871}
1872
1873bool 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
1883bool sqliteOperation::deleteLaneBoundary(const uint64_t& boundary_pkid) {
1884 char sql[512];

Callers 2

updateRoadsMethod · 0.80
deleteRoadsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected