Allow to use function name including "_" in white_function_list and
authorTatsuo Ishii <ishii at sraoss.co.jp>
Sat, 24 Sep 2011 22:03:48 +0000 (22:03 +0000)
committerTatsuo Ishii <ishii at sraoss.co.jp>
Sat, 24 Sep 2011 22:03:48 +0000 (22:03 +0000)
black_function_list.

definePgpoolConfParam.php

index 2cac77e03387392d8974ca99fdb8a141dbd6d75a..0422b34981a45413dc7e50836d7945b9387c1d82 100644 (file)
@@ -139,12 +139,12 @@ $pgpoolConfigParam[$key]['regexp'] = "^[0-9a-zA-Z; ]+$";
 $key = 'white_function_list';
 $pgpoolConfigParam[$key]['type'] ='C';
 $pgpoolConfigParam[$key]['default'] ='';
-$pgpoolConfigParam[$key]['regexp'] = "^[0-9a-zA-Z,]*$";
+$pgpoolConfigParam[$key]['regexp'] = "^[0-9a-zA-Z_,]*$";
 
 $key = 'black_function_list';
 $pgpoolConfigParam[$key]['type'] ='C';
 $pgpoolConfigParam[$key]['default'] ='';
-$pgpoolConfigParam[$key]['regexp'] = "^[0-9a-zA-Z,]*$";
+$pgpoolConfigParam[$key]['regexp'] = "^[0-9a-zA-Z_,]*$";
 
 $key = 'print_timestamp';
 $pgpoolConfigParam[$key]['type'] ='B';