Describes a User function by name and argument signature
| 352 | |
| 353 | |
| 354 | class UserFunctionDescriptor(SignatureDescriptor): |
| 355 | """ |
| 356 | Describes a User function by name and argument signature |
| 357 | """ |
| 358 | |
| 359 | name = None |
| 360 | """ |
| 361 | name of the function |
| 362 | """ |
| 363 | |
| 364 | argument_types = None |
| 365 | """ |
| 366 | Ordered list of CQL argument type names comprising the type signature |
| 367 | """ |
| 368 | |
| 369 | |
| 370 | class UserAggregateDescriptor(SignatureDescriptor): |
no outgoing calls