1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-16 23:02:26 +03:00

Fix some of the new date/time function features to comply with the spec.

Update requirement marks.

FossilOrigin-Name: 2f5dc7a9eed89baf6814e9e123354b262c806c853dee1243c93286c564b9aba8
This commit is contained in:
drh
2022-01-21 18:57:30 +00:00
parent e482fde6ee
commit a1c8151bab
5 changed files with 26 additions and 20 deletions

View File

@@ -3684,7 +3684,7 @@ int sqlite3_vtab_rhs_value(
}
*ppVal = pVal;
if( rc==SQLITE_OK && pVal==0 ){ /* IMP: R-60459-24801 */
if( rc==SQLITE_OK && pVal==0 ){ /* IMP: R-19933-32160 */
rc = SQLITE_NOTFOUND; /* IMP: R-36424-56542 */
}