Fixed handling of query parameter.

This commit is contained in:
Sascha L. Teichmann 2022-02-28 00:55:03 +01:00
parent d32c0d1a90
commit 4b654672e7
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func (pgc *PGClient) QueryCuboid(
for ; rows.Next(); count++ {
if err := rows.Scan(
&posX, &posY, posZ,
&posX, &posY, &posZ,
&data,
); err != nil {
return count, err