PostgreSQL: fix delete block
authorLoïc Blot <lblot@infopro-digital.com>
Mon, 27 Mar 2017 13:03:13 +0000 (15:03 +0200)
committerLoïc Blot <lblot@infopro-digital.com>
Mon, 27 Mar 2017 13:03:13 +0000 (15:03 +0200)
Typo fix: we are doing select on delete block.

This fix issue #5426

src/database-postgresql.cpp

index 03a69566bfb5c9c3e789937d5eb92567db2367eb..83678fd52d8aca839750861adf783c40c85a794e 100644 (file)
@@ -281,7 +281,7 @@ bool Database_PostgreSQL::deleteBlock(const v3s16 &pos)
        const int argLen[] = { sizeof(x), sizeof(y), sizeof(z) };
        const int argFmt[] = { 1, 1, 1 };
 
-       execPrepared("read_block", ARRLEN(args), args, argLen, argFmt);
+       execPrepared("delete_block", ARRLEN(args), args, argLen, argFmt);
 
        return true;
 }