Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2018-01-18 20:04:25 +0300
committermichael-grunder <michael.grunder@gmail.com>2018-01-18 20:04:25 +0300
commit84f1f28ba2a8db539f4cc98b7dd3bb6474007cf0 (patch)
treee2687f98e25d7bfaf23ae4bff98f36f5db86037d /common.h
parent837dee471ccac86581d306594ee945e82027572f (diff)
Implement SWAPDB command
Diffstat (limited to 'common.h')
-rw-r--r--common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common.h b/common.h
index 4d3977f8..4b1342df 100644
--- a/common.h
+++ b/common.h
@@ -782,6 +782,11 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_key_offset_value, 0, 0, 3)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
+ZEND_BEGIN_ARG_INFO_EX(arginfo_swapdb, 0, 0, 2)
+ ZEND_ARG_INFO(0, srcdb)
+ ZEND_ARG_INFO(0, dstdb)
+ZEND_END_ARG_INFO()
+
ZEND_BEGIN_ARG_INFO_EX(arginfo_key_start_end, 0, 0, 3)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, start)