Skip to content

Commit b26f885

Browse files
committed
Fix table set bug (#15)
1 parent 4e103b7 commit b26f885

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/table.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void Table::set(std::string key, std::vector<FieldValueTuple> &values,
7676

7777
const std::string &cmd = formatHMSET(getKeyName(key), values);
7878

79-
RedisReply r(m_db, cmd, REDIS_REPLY_STATUS);
79+
RedisReply r(m_db, cmd, REDIS_REPLY_STATUS, true);
8080

8181
r.checkStatusOK();
8282
}

0 commit comments

Comments
 (0)