| 781 | |
| 782 | |
| 783 | static int w_sql_delete(struct sip_msg* msg, str *table, str *filter, |
| 784 | void *url) |
| 785 | { |
| 786 | struct db_url *parsed_url; |
| 787 | |
| 788 | if (url) |
| 789 | parsed_url = ((struct db_url_container *)url)->u.url; |
| 790 | else |
| 791 | parsed_url = default_db_url; |
| 792 | |
| 793 | return ops_sql_api_delete(parsed_url, msg, table, filter); |
| 794 | } |
| 795 | |
| 796 | |
| 797 | static int w_sql_replace(struct sip_msg* msg, str* table, str *cols, |
nothing calls this directly
no test coverage detected