Describes a User aggregate function by name and argument signature
| 368 | |
| 369 | |
| 370 | class UserAggregateDescriptor(SignatureDescriptor): |
| 371 | """ |
| 372 | Describes a User aggregate function by name and argument signature |
| 373 | """ |
| 374 | |
| 375 | name = None |
| 376 | """ |
| 377 | name of the aggregate |
| 378 | """ |
| 379 | |
| 380 | argument_types = None |
| 381 | """ |
| 382 | Ordered list of CQL argument type names comprising the type signature |
| 383 | """ |
| 384 | |
| 385 | |
| 386 | class DriverException(Exception): |
no outgoing calls