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

Remove use of the affinity() function from view.test, as it is only available in SQLITE_DEBUG builds.

FossilOrigin-Name: 7f2246a17be9915b3492624a3d8deff56694bdc372f7627e3f16c1869415b1a3
This commit is contained in:
dan
2019-08-07 19:57:21 +00:00
parent e7e48dc629
commit 679c9613f6
3 changed files with 10 additions and 10 deletions

View File

@@ -733,10 +733,10 @@ do_execsql_test view-27.0 {
}
do_execsql_test view-27.1 {
SELECT c0, typeof(c0), affinity(c0), c1, typeof(c1), affinity(c1) FROM v0;
SELECT c0, typeof(c0), c1, typeof(c1) FROM v0;
} {
-1 text text
0.0 real none
-1 text
0.0 real
}
do_execsql_test view-27.2 { SELECT c0<c1 FROM v0 } 1