| 2033 | } |
| 2034 | |
| 2035 | void CreateMatchesTable() const { |
| 2036 | const std::string sql = |
| 2037 | "CREATE TABLE IF NOT EXISTS matches" |
| 2038 | " (pair_id INTEGER PRIMARY KEY NOT NULL," |
| 2039 | " rows INTEGER NOT NULL," |
| 2040 | " cols INTEGER NOT NULL," |
| 2041 | " data BLOB);"; |
| 2042 | |
| 2043 | SQLITE3_EXEC(database_, sql.c_str(), nullptr); |
| 2044 | } |
| 2045 | |
| 2046 | void CreateTwoViewGeometriesTable() const { |
| 2047 | if (ExistsTable("inlier_matches")) { |
nothing calls this directly
no outgoing calls
no test coverage detected