commit | 86dbec651db98853ae6ca96e9e5b6baf4d4d979c | [log] [tgz] |
---|---|---|
author | John Delaney <[email protected]> | Tue Aug 24 15:05:21 2021 |
committer | Chromium LUCI CQ <[email protected]> | Tue Aug 24 15:05:21 2021 |
tree | 83a50de9f978c177972928fb911c7ee2226a259e | |
parent | 997bd54be10b13d8840b9b3515585b45061a8976 [diff] [blame] |
[CodeInclusion] Replace sqlite_master usage with sqlite_schema Replace alias for for sqlite_schema with more inclusive terminology. https://www.sqlite.org/schematab.html#alternative_names Change-Id: Ia31404bb806492aea7577f9141c1b1c82af8e940 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3103965 Reviewed-by: Nico Weber <[email protected]> Reviewed-by: Victor Costan <[email protected]> Commit-Queue: John Delaney <[email protected]> Cr-Commit-Position: refs/heads/main@{#914737}
diff --git a/sql/test/test_helpers.h b/sql/test/test_helpers.h index 39059e4..210fc1c3 100644 --- a/sql/test/test_helpers.h +++ b/sql/test/test_helpers.h
@@ -71,10 +71,10 @@ const char* tree_name, const char* update_sql) WARN_UNUSED_RESULT; -// Return the number of tables in sqlite_master. +// Return the number of tables in sqlite_schema. size_t CountSQLTables(sql::Database* db) WARN_UNUSED_RESULT; -// Return the number of indices in sqlite_master. +// Return the number of indices in sqlite_schema. size_t CountSQLIndices(sql::Database* db) WARN_UNUSED_RESULT; // Returns the number of columns in the named table. 0 indicates an