command table entry for EVALSHA fixed

This commit is contained in:
antirez
2011-06-14 18:15:16 +02:00
parent b02e0388e3
commit 7cccc21f13
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ struct redisCommand readonlyCommandTable[] = {
{"unwatch",unwatchCommand,1,0,NULL,0,0,0},
{"object",objectCommand,-2,0,NULL,0,0,0},
{"eval",evalCommand,-3,REDIS_CMD_DENYOOM,zunionInterBlockClientOnSwappedKeys,0,0,0},
{"evalsha",evalCommand,-3,REDIS_CMD_DENYOOM,zunionInterBlockClientOnSwappedKeys,0,0,0}
{"evalsha",evalShaCommand,-3,REDIS_CMD_DENYOOM,zunionInterBlockClientOnSwappedKeys,0,0,0}
};
/*============================ Utility functions ============================ */
+1 -1
View File
@@ -109,6 +109,7 @@ proc cleanup {} {
proc execute_everything {} {
execute_tests "unit/printver"
execute_tests "unit/scripting"
execute_tests "unit/auth"
execute_tests "unit/protocol"
execute_tests "unit/basic"
@@ -125,7 +126,6 @@ proc execute_everything {} {
execute_tests "integration/aof"
# execute_tests "integration/redis-cli"
execute_tests "unit/pubsub"
execute_tests "unit/scripting"
# run tests with VM enabled
set ::global_overrides {vm-enabled yes}