1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sqlite: remove spurious eprintln on select calls (#15139)

This commit is contained in:
Hitalo de Jesus do Rosário Souza 2022-07-20 11:35:38 -03:00 committed by GitHub
parent 57a201f28c
commit c8d4534f5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,6 @@ pub fn (db DB) @select(config orm.SelectConfig, data orm.QueryData, where orm.Qu
mut ret := [][]orm.Primitive{}
if config.is_count {
eprintln(config)
// 2. Get count of returned values & add it to ret array
step := stmt.step()
if step !in [sqlite_row, sqlite_ok, sqlite_done] {