Educational-MySQL / UDFs-written-in-Python

MySQL UDFs written in Python
GNU General Public License v3.0
2 stars 5 forks source link

Update factorial.cc #7

Closed elshadaghazade closed 7 years ago

elshadaghazade commented 7 years ago

There was a logical problem on checking the args count: if (args->arg_count > 1) ... I changed it: if (args->arg_count != 1) ...