Displaying 1 result from an estimated 1 matches for "query_eol".
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...t;%s: %p", __func__, q));
+
+ the_qry(q)->vtable->abort(the_qry(q), r);
+ the_qry(q)->vtable->dtor(the_qry(q));
+}
+
+static inline void destroy_query(void *q)
+{
+ dprintf(("%s: %p", __func__, q));
+ the_qry(q)->vtable->dtor(the_qry(q));
+}
+
+static inline time_t query_eol(void *q)
+{
+ dprintf(("%s: %p", __func__, q));
+ return the_qry(q)->vtable->eol(the_qry(q));
+}
+
+static inline void set_query_sync_ioloop(void *q, struct ioloop *ioloop)
+{
+ dprintf(("%s: %p", __func__, q));
+ the_qry(q)->vtable->set_sync_ioloop(the_qry(q), ioloo...