[go: nahoru, domu]

  1. 3a3f943 Add #include "base/macros.h" for ignore_result() by Peter Boström · 2 years, 10 months ago
  2. 643cdf6 Replace base/task/ temporary forward headers with their final locations by Patrick Monette · 2 years, 11 months ago
  3. 3d7d7092 Replace task-related headers to their equivalent in base/task/ by Patrick Monette · 3 years ago
  4. e5a38ed Migrate "base::TimeDelta::FromX" to "base:X". by Peter Kasting · 3 years ago
  5. d9f80b5 sql: Add some query processing details to README. by Victor Costan · 3 years ago
  6. 628afca sql: Implement Database::HasActiveTransactions(). by Victor Costan · 3 years ago
  7. 3b51fdb sql: Add full state DCHECKs to Transaction. by Victor Costan · 3 years ago
  8. bc4285f sql: Untangle Database from ScopedErrorExpecter. by Victor Costan · 3 years ago
  9. b6380b72 sql: Clean up sql::Transaction. by Victor Costan · 3 years ago
  10. 62eaf6f sql: Remove ScopedErrorExpecter::SQLiteLibVersionNumber(). by Victor Costan · 3 years ago
  11. ce406da2 sql: Document Database's ErrorCallback lifetime guarantees. by Victor Costan · 3 years ago
  12. 76898750 sql: Fix formatting inconsistencies in README. by Victor Costan · 3 years ago
  13. 86dbec6 [CodeInclusion] Replace sqlite_master usage with sqlite_schema by John Delaney · 3 years, 1 month ago
  14. 71c846a GCC: drop std namespace from strlen in sql::Database by Stephan Hartmann · 3 years, 1 month ago
  15. 18f9e7a sql: Explicit DCHECKs for empty SQL statements. by Victor Costan · 3 years, 2 months ago
  16. 289f2c8b sql: Introduce Database::ExecuteScript(). by Victor Costan · 3 years, 2 months ago
  17. 205b96dc sql: Make Database::ExecuteAndReturnErrorCode() private. by Victor Costan · 3 years, 2 months ago
  18. b2777ce More IWYU fixes. by Peter Kasting · 3 years, 2 months ago
  19. 4e442d0 sql: Disable double-quoted string literals for sql::Database users. by Victor Costan · 3 years, 2 months ago
  20. 4f52073e Remove unneeded includes of optional.h from headers. by Lei Zhang · 3 years, 2 months ago
  21. fe078f9 sql: Disable access to views by default for sql::Database users. by Victor Costan · 3 years, 2 months ago
  22. 5530932 sql: DCHECK on extra SQL text in Database::Get*Statement(). by Victor Costan · 3 years, 2 months ago
  23. e9938c1 sql: Fix overly optimistic assumption in Fuchsia's VFS wrapper. by Victor Costan · 3 years, 2 months ago
  24. 5c2e8551 sql: Add guidance against double-quoted string literals to README. by Victor Costan · 3 years, 2 months ago
  25. 04fc909 sql: Disable virtual table access by default for sql::Database users. by Victor Costan · 3 years, 2 months ago
  26. c108149 sql: Enable disabled tests in RecoverModuleTest. by Victor Costan · 3 years, 2 months ago
  27. 95848c0 sql: Break out recovery test for database with views. by Victor Costan · 3 years, 2 months ago
  28. 106e500 sql: Remove Database::GetUntrackedStatement(). by Victor Costan · 3 years, 2 months ago
  29. 1268a999 sql: Change the Statement::ColumnBlob() return type to base::span. by Victor Costan · 3 years, 2 months ago
  30. b3793d6 sql: Extend Statement sequence checks to Android. by Victor Costan · 3 years, 2 months ago
  31. eb75b6f2 sql: Add sequence checks to Transaction. by Victor Costan · 3 years, 2 months ago
  32. 081d534 sql: Remove const qualifier from Statement::Column*() methods. by Victor Costan · 3 years, 2 months ago
  33. c27863df sql: Better DCHECKs in sql::Statement. by Victor Costan · 3 years, 2 months ago
  34. 169ef03 sql: Minor improvements to ATTACH. by Victor Costan · 3 years, 2 months ago
  35. 45cfbb09 sql: Add index checks to sql::Statement::Column*() methods. by Victor Costan · 3 years, 2 months ago
  36. 11e241f sql: Remove return values from Statement::Bind*() methods. by Victor Costan · 3 years, 2 months ago
  37. 0b77fcb sql: Remove Statement::ColumnBlobAsString16(). by Victor Costan · 3 years, 2 months ago
  38. 8ec18ee4 sql: Replace Database::set_mmap_alt_status() with DatabaseOptions member by Victor Costan · 3 years, 2 months ago
  39. 5f7a09a8 sql: MetaTable::RazeIfIncompatible razes too-old and too-new DBs by David Van Cleve · 3 years, 2 months ago
  40. 58980e0 sql: Rework bind parameter index checking. by Victor Costan · 3 years, 2 months ago
  41. 7c23482 sql: Disable trigger execution for sql::Database users. by Victor Costan · 3 years, 2 months ago
  42. 9d1c875 sql: Better documentation for DatabaseOptions usage. by Victor Costan · 3 years, 2 months ago
  43. bad4d6e2 sql: Add canonical anchors for discouraged features in the README. by Victor Costan · 3 years, 2 months ago
  44. 83d940d sql: Switch some Database APIs from const char* to StringPiece. by Victor Costan · 3 years, 2 months ago
  45. c02b7af sql: Remove DCHECKs on SQL compilation errors. by Victor Costan · 3 years, 2 months ago
  46. 54f8955a sql: Document SQLite dev shell directive for EXPLAIN QUERY PLAN. by Victor Costan · 3 years, 2 months ago
  47. 827a141 sql: Statement::BindString() accepts base::StringPiece. by Victor Costan · 3 years, 2 months ago
  48. 543d102 sql: Add unit tests for sql::Statement::BindString(). by Victor Costan · 3 years, 2 months ago
  49. 698ae0450 sql: Safer API for Statement::BindBlob(). by Victor Costan · 3 years, 2 months ago
  50. 00c7643 sql: Eliminate DISALLOW_COPY_AND_ASSIGN(). by Victor Costan · 3 years, 2 months ago
  51. f7b270f sql: Have MetaTable expose a "delete the table" method by David Van Cleve · 3 years, 3 months ago
  52. 94b5032b Various changes to prevent narrowing conversions: sql/ by Peter Kasting · 3 years, 3 months ago
  53. c44ad3c sql: Document index storage scheme and two naming constraints. by Victor Costan · 3 years, 3 months ago
  54. 90dae26 sql: Remove expired histograms. by Victor Costan · 3 years, 3 months ago
  55. 0166412 sqlite: More guidance on avoiding NULLs. by Victor Costan · 3 years, 4 months ago
  56. f265dd7f sql: Document iterating on SQL statements using SQLite's shells. by Victor Costan · 3 years, 4 months ago
  57. 1141e10 Revert "SQLite: Set printf() precision limits in production." by Victor Costan · 3 years, 4 months ago
  58. 389b0c0 SQLite: Set printf() precision limits in production. by Victor Costan · 3 years, 4 months ago
  59. 15aa757 sql: Remove sql::Database default constructor use from sql::Database. by Victor Costan · 3 years, 4 months ago
  60. 4ab0f932 Remove unneeded base/stl_util.h includes in various dirs. by Lei Zhang · 3 years, 4 months ago
  61. 9e480bc1 sql: Discourage the use of built-in functions. by Victor Costan · 3 years, 4 months ago
  62. 52afda3 [COIL] Change chromium code search type links to use main rather than master for sql by John Palmer · 3 years, 4 months ago
  63. d0f42ae sql: DCHECK that GetLastInsertRowId() is called after successful INSERT. by Victor Costan · 3 years, 4 months ago
  64. 3ac3d30 skia,sql,storage,testing: Replace base::Optional with absl::optional by Anton Bikineev · 3 years, 4 months ago
  65. 49a903a Reland "sql: Remove SQLTestBase." by Victor Costan · 3 years, 4 months ago
  66. b6424076 Revert "sql: Remove SQLTestBase." by John Abd-El-Malek · 3 years, 4 months ago
  67. 525b30a sql: Remove SQLTestBase. by Victor Costan · 3 years, 4 months ago
  68. 1d4937a sql: Add virtual tables to the discouraged feature list. by Victor Costan · 3 years, 4 months ago
  69. d4888db Add trace event for EnsureSqliteInitialized by Etienne Bergeron · 3 years, 4 months ago
  70. 846e189 [base] Remove base::StringPiece::as_string() usages by Peter Kasting · 3 years, 4 months ago
  71. 02f91da Fix header guards in various dirs. by Lei Zhang · 3 years, 5 months ago
  72. df43e9b sql: Fix DCHECK while recovering empty BLOB or TEXT values. by Victor Costan · 3 years, 5 months ago
  73. fd24d8a sql: Expand README. by Victor Costan · 3 years, 5 months ago
  74. 841e5b7 sql: Add README. by Victor Costan · 3 years, 5 months ago
  75. 9aeacf7 Do not return std::unique_ptr<T>() in various dirs. by Lei Zhang · 3 years, 5 months ago
  76. ad6b011 sql: Add BindTime() and ColumnTime() to sql::Statement. by Victor Costan · 3 years, 5 months ago
  77. fb60ea0 Apply modernize-make-unique to remaining files by Peter Boström · 3 years, 5 months ago
  78. 09a4396 [LSC] Remove base/strings/string16.h #includes by Jan Wilken Dörrie · 3 years, 6 months ago
  79. 739ccc21 [LSC] Replace base::string16 with std::u16string in //[f-z]* by Jan Wilken Dörrie · 3 years, 6 months ago
  80. a17b04b [LSC] Replace base::char16 with char16_t outside of //base by Jan Wilken Dörrie · 3 years, 6 months ago
  81. 56f1bfa Add mek@ to OWNERS for all storage-related code. by Victor Costan · 3 years, 6 months ago
  82. dfd1edc Update documentation to allow owners of public APIs that are used throughout the codebase to Owners-Override changes across the source tree. by John Abd-El-Malek · 3 years, 7 months ago
  83. 8a2d723a [fuchsia] Fix FuchsiaVfsCheckReservedLock return value by Fabrice de Gans-Riberi · 3 years, 7 months ago
  84. b30a0cee Remove config setters from sql/database.h by Shubham Aggarwal · 3 years, 7 months ago
  85. 15d905de sql: Run SQLDatabaseTestExclusiveMode tests. by Victor Costan · 3 years, 8 months ago
  86. f40a8757 sql: Add sequence checks to sql::Statement. by Victor Costan · 3 years, 8 months ago
  87. e7cd358 sql: Fix potential integer multiplication overflow in database recovery. by Victor Costan · 3 years, 8 months ago
  88. 5ad7ee4 sql: Clarify comment for MetaTable::SetCompatibleVersion(). by Victor Costan · 3 years, 9 months ago
  89. 00370898 Add test coverage for WAL mode in database_unittest by Shubham Aggarwal · 3 years, 11 months ago
  90. e2d6b60d sql: Move defaults from Database constructor to member declaration by Shubham Aggarwal · 3 years, 11 months ago
  91. 7b60fe6e Add sql::DatabaseOptions to encapsulate its configuration options by Shubham Aggarwal · 3 years, 11 months ago
  92. d6e7325 sql: Add support for measuring per-database memory usage. by Victor Costan · 3 years, 11 months ago
  93. b3eab8d6 Remove unneeded scoped_feature_list.h by Eric Willigers · 4 years ago
  94. b223079 sql: Switch SQLite to default to exclusive locking mode. by Victor Costan · 4 years ago
  95. 58aa8ff Add DIR_METADATA files to //sql by Edward Lesmes · 4 years ago
  96. 598a10e9 Clean up SqlSkipPreload feature. by Caitlin Fischer · 4 years ago
  97. f05bb10 [base] Remove BasicStringPiece::starts_with() by Jan Wilken Dörrie · 4 years, 1 month ago
  98. 959eab0 sql: Small documentation improvements for SandboxedVfs. by Victor Costan · 4 years, 1 month ago
  99. 0168742 Improve Storage Service sandboxing support by Ken Rockot · 4 years, 1 month ago
  100. 7655fcb6 Move SandboxedVfs to from Blink to //sql by Ken Rockot · 4 years, 1 month ago