Line data Source code
1 : /*
2 : * SPDX-License-Identifier: MPL-2.0
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * Copyright 2024 MonetDB Foundation;
9 : * Copyright August 2008 - 2023 MonetDB B.V.;
10 : * Copyright 1997 - July 2008 CWI.
11 : */
12 :
13 : #include "monetdb_config.h"
14 : #include "bat_table.h"
15 : #include "bat_utils.h"
16 : #include "bat_storage.h"
17 :
18 : static BAT *
19 1115681 : delta_cands(sql_trans *tr, sql_table *t)
20 : {
21 1115681 : sqlstore *store = tr->store;
22 1115681 : BAT *cands = store->storage_api.bind_cands(tr, t, 1, 0);
23 :
24 1115650 : if (cands && (cands->ttype == TYPE_msk || mask_cand(cands))) {
25 76837 : BAT *ncands = BATunmask(cands);
26 76837 : BBPreclaim(cands);
27 76837 : cands = ncands;
28 : }
29 1115650 : return cands;
30 : }
31 :
32 : static BAT *
33 3979959 : full_column(sql_trans *tr, sql_column *c)
34 : {
35 : /* return full normalized column bat
36 : * b := b.copy()
37 : b := b.replace(u);
38 : */
39 3979959 : sqlstore *store = tr->store;
40 3979959 : BAT *b = store->storage_api.bind_col(tr, c, RDONLY), *ui = NULL, *uv = NULL;
41 3979872 : int res = store->storage_api.bind_updates(tr, c, &ui, &uv);
42 :
43 3980029 : if (!b || !ui || !uv || res == LOG_ERR) {
44 0 : bat_destroy(b);
45 0 : bat_destroy(ui);
46 0 : bat_destroy(uv);
47 0 : return NULL;
48 : }
49 3980029 : if (BATcount(ui)) {
50 1345 : BAT *r = COLcopy(b, b->ttype, true, TRANSIENT);
51 1345 : bat_destroy(b);
52 1345 : b = r;
53 1345 : if (!b || BATreplace(b, ui, uv, true) != GDK_SUCCEED) {
54 0 : bat_destroy(b);
55 0 : bat_destroy(ui);
56 0 : bat_destroy(uv);
57 0 : return NULL;
58 : }
59 : }
60 3980029 : bat_destroy(ui);
61 3979928 : bat_destroy(uv);
62 3979928 : return b;
63 : }
64 :
65 : static oid
66 1005346 : column_find_row(sql_trans *tr, sql_column *c, const void *value, ...)
67 : {
68 1005346 : va_list va;
69 1005346 : BAT *b = NULL, *s = NULL, *r = NULL;
70 1005346 : oid rid = oid_nil;
71 1005346 : sql_column *n = NULL;
72 :
73 1005346 : va_start(va, value);
74 1005346 : s = delta_cands(tr, c->t);
75 1005323 : if (!s)
76 0 : goto return_nil;
77 1005323 : b = full_column(tr, c);
78 1005354 : if (!b) {
79 0 : bat_destroy(s);
80 0 : goto return_nil;
81 : }
82 1005354 : r = BATselect(b, s, value, NULL, true, false, false);
83 1005344 : bat_destroy(s);
84 1005355 : bat_destroy(b);
85 1005339 : if (!r)
86 0 : goto return_nil;
87 : s = r;
88 1996825 : while ((n = va_arg(va, sql_column *)) != NULL) {
89 991486 : value = va_arg(va, void *);
90 991486 : c = n;
91 :
92 991486 : b = full_column(tr, c);
93 991486 : if (!b) {
94 0 : bat_destroy(s);
95 0 : goto return_nil;
96 : }
97 991486 : r = BATselect(b, s, value, NULL, true, false, false);
98 991486 : bat_destroy(s);
99 991486 : bat_destroy(b);
100 991486 : if (!r)
101 0 : goto return_nil;
102 : s = r;
103 : }
104 1005339 : va_end(va);
105 1005339 : if (BATcount(s) == 1) {
106 479721 : rid = BUNtoid(s, 0);
107 : }
108 1005346 : bat_destroy(s);
109 1005346 : return rid;
110 0 : return_nil:
111 0 : va_end(va);
112 0 : return oid_nil;
113 : }
114 :
115 : static void *
116 192332 : column_find_value(sql_trans *tr, sql_column *c, oid rid)
117 : {
118 192332 : BUN q = BUN_NONE;
119 192332 : BAT *b;
120 192332 : void *res = NULL;
121 :
122 192332 : b = full_column(tr, c);
123 192333 : if (b) {
124 192333 : if (rid < b->hseqbase || rid >= b->hseqbase + BATcount(b))
125 : q = BUN_NONE;
126 : else
127 192333 : q = rid - b->hseqbase;
128 : }
129 192333 : if (q != BUN_NONE) {
130 192333 : BATiter bi = bat_iterator(b);
131 192332 : const void *r;
132 192332 : size_t sz;
133 :
134 192332 : r = BUNtail(bi, q);
135 192332 : sz = ATOMlen(b->ttype, r);
136 192332 : res = GDKmalloc(sz);
137 192332 : if (res)
138 192332 : memcpy(res, r, sz);
139 192332 : bat_iterator_end(&bi);
140 : }
141 192332 : bat_destroy(b);
142 192331 : return res;
143 : }
144 :
145 : #define column_find_tpe(TPE) \
146 : static TPE \
147 : column_find_##TPE(sql_trans *tr, sql_column *c, oid rid) \
148 : { \
149 : BUN q = BUN_NONE; \
150 : BAT *b; \
151 : TPE res = -1; \
152 : \
153 : b = full_column(tr, c); \
154 : if (b) { \
155 : if (rid < b->hseqbase || rid >= b->hseqbase + BATcount(b)) \
156 : q = BUN_NONE; \
157 : else \
158 : q = rid - b->hseqbase; \
159 : } \
160 : if (q != BUN_NONE) { \
161 : BATiter bi = bat_iterator(b); \
162 : res = *(TPE*)BUNtloc(bi, q); \
163 : bat_iterator_end(&bi); \
164 : } \
165 : bat_destroy(b); \
166 : return res; \
167 : }
168 :
169 457741 : column_find_tpe(sqlid)
170 878312 : column_find_tpe(bte)
171 0 : column_find_tpe(sht)
172 940760 : column_find_tpe(int)
173 76120 : column_find_tpe(lng)
174 :
175 : static const char *
176 487633 : column_find_string_start(sql_trans *tr, sql_column *c, oid rid, ptr *cbat)
177 : {
178 487633 : BUN q = BUN_NONE;
179 487633 : BAT **b = (BAT**) cbat;
180 487633 : const char *res = NULL;
181 :
182 487633 : *b = full_column(tr, c);
183 487633 : if (*b) {
184 487633 : if (rid < (*b)->hseqbase || rid >= (*b)->hseqbase + BATcount(*b))
185 : q = BUN_NONE;
186 : else
187 487633 : q = rid - (*b)->hseqbase;
188 : }
189 487633 : if (q != BUN_NONE) {
190 487633 : BATiter bi = bat_iterator(*b);
191 487633 : res = BUNtvar(bi, q);
192 487633 : bat_iterator_end(&bi);
193 : }
194 487633 : return res;
195 : }
196 :
197 : static void
198 487633 : column_find_string_end(ptr cbat)
199 : {
200 487633 : BAT *b = (BAT*) cbat;
201 487633 : bat_destroy(b);
202 487633 : }
203 :
204 : static int
205 3021 : column_update_value(sql_trans *tr, sql_column *c, oid rid, void *value)
206 : {
207 3021 : sqlstore *store = tr->store;
208 3021 : assert(!is_oid_nil(rid));
209 :
210 3021 : return store->storage_api.update_col(tr, c, &rid, value, c->type.type->localtype);
211 : }
212 :
213 : static int
214 1993885 : table_insert(sql_trans *tr, sql_table *t, ...)
215 : {
216 1993885 : sqlstore *store = tr->store;
217 1993885 : va_list va;
218 1993885 : node *n = ol_first_node(t->columns);
219 1993885 : void *val = NULL;
220 1993885 : int cnt = 0;
221 1993885 : int ok = LOG_OK;
222 1993885 : BUN offset = 0;
223 :
224 1993885 : va_start(va, t);
225 3987770 : ok = t->bootstrap?
226 1993885 : store->storage_api.claim_tab(tr, t, 1, &offset, NULL):
227 115157 : store->storage_api.key_claim_tab(tr, t, 1, &offset, NULL);
228 1993885 : if (ok != LOG_OK) {
229 4 : va_end(va);
230 4 : return ok;
231 : }
232 17379099 : for (; n; n = n->next) {
233 15385218 : sql_column *c = n->data;
234 15385218 : val = va_arg(va, void *);
235 15385219 : if (!val)
236 : break;
237 15385219 : ok = store->storage_api.append_col(tr, c, offset, NULL, val, 1, c->type.type->localtype);
238 15385218 : if (ok != LOG_OK) {
239 0 : va_end(va);
240 0 : return ok;
241 : }
242 15385218 : cnt++;
243 : }
244 1993881 : va_end(va);
245 1993881 : if (n) {
246 : // This part of the code should never get reached
247 0 : TRC_ERROR(SQL_STORE, "Called table_insert(%s) with wrong number of args (%d,%d)\n", t->base.name, ol_length(t->columns), cnt);
248 0 : assert(0);
249 : return LOG_ERR;
250 : }
251 : return LOG_OK;
252 : }
253 :
254 : static int
255 64042 : table_delete(sql_trans *tr, sql_table *t, oid rid)
256 : {
257 64042 : sqlstore *store = tr->store;
258 64042 : assert(!is_oid_nil(rid));
259 :
260 64042 : return store->storage_api.delete_tab(tr, t, &rid, TYPE_oid);
261 : }
262 :
263 : static res_table *
264 1120 : table_orderby(sql_trans *tr, sql_table *t, sql_column *jl, sql_column *jr, sql_column *jl2, sql_column *jr2, sql_column *o, ...)
265 : {
266 : /* jl/jr are columns on which we first join */
267 : /* if also jl2,jr2, we need to do another join, where both tables differ from 't' */
268 :
269 1120 : va_list va;
270 1120 : BAT *b = NULL, *r = NULL, *cl, *cr = NULL, *cr2 = NULL, *id = NULL, *grp = NULL;
271 : /* if pointers are equal, make it an inclusive select */
272 :
273 1120 : cl = delta_cands(tr, t);
274 1120 : if (cl == NULL)
275 : return NULL;
276 :
277 1120 : if (jl && jr) {
278 896 : BAT *lcb, *rcb, *r = NULL, *l = NULL;
279 896 : gdk_return ret;
280 :
281 896 : cr = delta_cands(tr, jr->t);
282 896 : lcb = full_column(tr, jl);
283 896 : rcb = full_column(tr, jr);
284 896 : if (!cr || !lcb || !rcb) {
285 0 : bat_destroy(cl);
286 0 : bat_destroy(cr);
287 0 : bat_destroy(lcb);
288 0 : bat_destroy(rcb);
289 0 : return NULL;
290 : }
291 :
292 896 : ret = BATjoin(&l, &r, lcb, rcb, cl, cr, false, BATcount(lcb));
293 896 : bat_destroy(cl);
294 896 : bat_destroy(cr);
295 896 : bat_destroy(lcb);
296 896 : bat_destroy(rcb);
297 896 : if (ret != GDK_SUCCEED)
298 : return NULL;
299 896 : cl = l;
300 896 : cr = r;
301 : }
302 : /* we assume 1->n joins, therefore first join between jl2/jr2 */
303 1120 : if (jl2 && jr2) {
304 336 : assert(jr->t == jl2->t);
305 336 : BAT *lcb, *rcb, *r = NULL, *l = NULL;
306 336 : gdk_return ret;
307 :
308 336 : cr2 = delta_cands(tr, jr2->t);
309 336 : lcb = full_column(tr, jl2);
310 336 : rcb = full_column(tr, jr2);
311 336 : if (!cr2 || !lcb || !rcb) {
312 0 : bat_destroy(cl);
313 0 : bat_destroy(cr);
314 0 : bat_destroy(cr2);
315 0 : bat_destroy(lcb);
316 0 : bat_destroy(rcb);
317 0 : return NULL;
318 : }
319 :
320 336 : l = BATproject(cr, lcb); /* project because cr is join result */
321 336 : bat_destroy(lcb);
322 336 : if (l == NULL) {
323 0 : bat_destroy(cl);
324 0 : bat_destroy(cr);
325 0 : bat_destroy(cr2);
326 0 : bat_destroy(rcb);
327 0 : return NULL;
328 : }
329 336 : lcb = l;
330 336 : ret = BATjoin(&l, &r, lcb, rcb, NULL, cr2, false, BATcount(lcb));
331 336 : bat_destroy(cr2);
332 336 : bat_destroy(lcb);
333 336 : bat_destroy(rcb);
334 336 : if (ret != GDK_SUCCEED) {
335 0 : bat_destroy(cl);
336 0 : bat_destroy(cr);
337 0 : return NULL;
338 : }
339 336 : lcb = BATproject(l, cl);
340 336 : rcb = BATproject(l, cr);
341 336 : bat_destroy(l);
342 336 : bat_destroy(cl);
343 336 : bat_destroy(cr);
344 336 : if (!lcb || !rcb) {
345 0 : bat_destroy(lcb);
346 0 : bat_destroy(rcb);
347 0 : bat_destroy(r);
348 0 : return NULL;
349 : }
350 336 : cl = lcb;
351 336 : cr = rcb;
352 336 : cr2 = r;
353 : }
354 :
355 1120 : va_start(va, o);
356 3248 : do {
357 3248 : BAT *nid = NULL, *ngrp = NULL;
358 3248 : sql_column *next = va_arg(va, sql_column *);
359 :
360 3248 : b = full_column(tr, o);
361 3248 : if (b)
362 4144 : r = BATproject( (o->t==t) ? cl : (cr2 && o->t==jr2->t) ? cr2 : cr, b);
363 3248 : bat_destroy(b);
364 3248 : if (!b || !r) {
365 0 : bat_destroy(cl);
366 0 : bat_destroy(cr);
367 0 : bat_destroy(cr2);
368 0 : va_end(va);
369 0 : return NULL;
370 : }
371 : /* (sub)order b */
372 4368 : if (BATsort(NULL, &nid, next?&ngrp:NULL, r, id, grp, false, false, false) != GDK_SUCCEED) {
373 0 : bat_destroy(r);
374 0 : bat_destroy(id);
375 0 : bat_destroy(grp);
376 0 : bat_destroy(cl);
377 0 : bat_destroy(cr);
378 0 : bat_destroy(cr2);
379 0 : va_end(va);
380 0 : return NULL;
381 : }
382 3248 : bat_destroy(r);
383 3248 : bat_destroy(id);
384 3248 : bat_destroy(grp);
385 3248 : id = nid;
386 3248 : grp = ngrp;
387 3248 : o = next;
388 3248 : } while (o);
389 1120 : bat_destroy(grp);
390 1120 : va_end(va);
391 :
392 1120 : r = BATproject(id, cl);
393 1120 : bat_destroy(id);
394 1120 : bat_destroy(cl);
395 1120 : bat_destroy(cr);
396 1120 : bat_destroy(cr2);
397 1120 : if (r == NULL)
398 : return NULL;
399 1120 : cl = r;
400 : /* project all in the new order */
401 1120 : res_table *rt = res_table_create(tr, 1/*result_id*/, 1/*query_id*/, ol_length(t->columns), Q_TABLE, NULL);
402 1120 : if (!rt) {
403 0 : bat_destroy(cl);
404 0 : return NULL;
405 : }
406 1120 : rt->nr_rows = BATcount(cl);
407 7840 : for (node *n = ol_first_node(t->columns); n; n = n->next) {
408 6720 : BAT *rc = NULL;
409 :
410 6720 : o = n->data;
411 6720 : b = full_column(tr, o);
412 6720 : if (b == NULL || (rc = BATproject(cl, b)) == NULL) {
413 0 : bat_destroy(cl);
414 0 : bat_destroy(b);
415 0 : res_table_destroy(rt);
416 0 : return NULL;
417 : }
418 6720 : bat_destroy(b);
419 6720 : if (!res_col_create(tr, rt, t->base.name, o->base.name, o->type.type->base.name, o->type.type->digits, o->type.type->scale, TYPE_bat, rc, true)) {
420 0 : bat_destroy(cl);
421 0 : res_table_destroy(rt);
422 0 : return NULL;
423 : }
424 : }
425 1120 : bat_destroy(cl);
426 1120 : return rt;
427 : }
428 :
429 : static void *
430 1244303 : table_fetch_value(res_table *rt, sql_column *c)
431 : {
432 : /* this function is only ever called during startup, and therefore
433 : * there are no other threads that may be modifying the BAT under
434 : * our hands, so returning a pointer into the heap is fine */
435 1244303 : BAT *b = (BAT*)rt->cols[c->colnr].p;
436 1244303 : BATiter bi = bat_iterator_nolock(b);
437 1244303 : assert(b->ttype && b->ttype != TYPE_msk);
438 1244303 : if (bi.vh)
439 454731 : return BUNtvar(bi, rt->cur_row);
440 789572 : return BUNtloc(bi, rt->cur_row);
441 : //return (void*)BUNtail(bi, rt->cur_row);
442 : }
443 :
444 : static void
445 1120 : table_result_destroy(res_table *rt)
446 : {
447 1120 : if (rt)
448 1120 : res_table_destroy(rt);
449 1120 : }
450 :
451 : /* returns table rids, for the given select ranges */
452 : static rids *
453 107509 : rids_select( sql_trans *tr, sql_column *key, const void *key_value_low, const void *key_value_high, ...)
454 : {
455 107509 : va_list va;
456 107509 : BAT *b = NULL, *r = NULL, *s = NULL;
457 107509 : rids *rs = MNEW(rids);
458 107509 : const void *kvl = key_value_low, *kvh = key_value_high;
459 : /* if pointers are equal, make it an inclusive select */
460 107509 : bool hi = key_value_low == key_value_high;
461 :
462 107509 : if(!rs)
463 : return NULL;
464 107509 : s = delta_cands(tr, key->t);
465 107509 : if (s == NULL) {
466 0 : GDKfree(rs);
467 0 : return NULL;
468 : }
469 107509 : b = full_column(tr, key);
470 107509 : if (b == NULL) {
471 0 : bat_destroy(s);
472 0 : GDKfree(rs);
473 0 : return NULL;
474 : }
475 107509 : if (!kvl)
476 223 : kvl = ATOMnilptr(b->ttype);
477 107509 : if (!kvh && kvl != ATOMnilptr(b->ttype))
478 0 : kvh = ATOMnilptr(b->ttype);
479 107509 : if (key_value_low) {
480 107286 : r = BATselect(b, s, kvl, kvh, true, hi, false);
481 107286 : bat_destroy(s);
482 107286 : s = r;
483 : }
484 107509 : bat_destroy(b);
485 107509 : if (s == NULL) {
486 0 : GDKfree(rs);
487 0 : return NULL;
488 : }
489 107509 : if (key_value_low || key_value_high) {
490 107286 : va_start(va, key_value_high);
491 110209 : while ((key = va_arg(va, sql_column *)) != NULL) {
492 2923 : kvl = va_arg(va, void *);
493 2923 : kvh = va_arg(va, void *);
494 :
495 2923 : b = full_column(tr, key);
496 2923 : if (b == NULL) {
497 0 : bat_destroy(s);
498 0 : GDKfree(rs);
499 0 : va_end(va);
500 0 : return NULL;
501 : }
502 2923 : if (!kvl)
503 0 : kvl = ATOMnilptr(b->ttype);
504 2923 : if (!kvh && kvl != ATOMnilptr(b->ttype))
505 2091 : kvh = ATOMnilptr(b->ttype);
506 2091 : assert(kvh);
507 2923 : r = BATselect(b, s, kvl, kvh, true, hi, false);
508 2923 : bat_destroy(s);
509 2923 : s = r;
510 2923 : bat_destroy(b);
511 2923 : if (s == NULL) {
512 0 : GDKfree(rs);
513 0 : va_end(va);
514 0 : return NULL;
515 : }
516 : }
517 107286 : va_end(va);
518 : }
519 107509 : *rs = (rids) {
520 : .data = s,
521 : };
522 107509 : return rs;
523 : }
524 :
525 : /* order rids by orderby_column values */
526 : static rids *
527 83 : rids_orderby(sql_trans *tr, rids *r, sql_column *orderby_col)
528 : {
529 83 : BAT *b, *s, *o;
530 :
531 83 : b = full_column(tr, orderby_col);
532 83 : if (!b)
533 : return NULL;
534 83 : s = BATproject(r->data, b);
535 83 : bat_destroy(b);
536 83 : if (s == NULL)
537 : return NULL;
538 83 : if (BATsort(NULL, &o, NULL, s, NULL, NULL, false, false, false) != GDK_SUCCEED) {
539 0 : bat_destroy(s);
540 0 : return NULL;
541 : }
542 83 : bat_destroy(s);
543 83 : s = BATproject(o, r->data);
544 83 : bat_destroy(o);
545 83 : if (s == NULL)
546 : return NULL;
547 83 : bat_destroy(r->data);
548 83 : r->data = s;
549 83 : return r;
550 : }
551 :
552 :
553 : /* return table rids from result of rids_select, return (oid_nil) when done */
554 : static oid
555 113769 : rids_next(rids *r)
556 : {
557 113769 : if (r->cur < BATcount((BAT *) r->data)) {
558 26301 : BAT *t = r->data;
559 :
560 26301 : if (t && (t->ttype == TYPE_msk || mask_cand(t))) {
561 0 : r->data = BATunmask(t);
562 0 : if (!r->data) {
563 0 : r->data = t;
564 0 : return oid_nil;
565 : }
566 0 : bat_destroy(t);
567 : }
568 26301 : return BUNtoid((BAT *) r->data, r->cur++);
569 : }
570 87468 : return oid_nil;
571 : }
572 :
573 : /* clean up the resources taken by the result of rids_select */
574 : static void
575 107509 : rids_destroy(rids *r)
576 : {
577 107509 : bat_destroy(r->data);
578 107509 : _DELETE(r);
579 107509 : }
580 :
581 : static int
582 20363 : rids_empty(rids *r )
583 : {
584 20363 : BAT *b = r->data;
585 20363 : return BATcount(b) <= 0;
586 : }
587 :
588 : static rids *
589 0 : rids_join(sql_trans *tr, rids *l, sql_column *lc, rids *r, sql_column *rc)
590 : {
591 0 : BAT *lcb, *rcb, *s = NULL;
592 0 : gdk_return ret;
593 :
594 0 : lcb = full_column(tr, lc);
595 0 : rcb = full_column(tr, rc);
596 0 : if (!lcb || !rcb) {
597 0 : bat_destroy(l->data);
598 0 : l->data = NULL;
599 0 : bat_destroy(lcb);
600 0 : bat_destroy(rcb);
601 0 : return NULL;
602 : }
603 0 : ret = BATjoin(&s, NULL, lcb, rcb, l->data, r->data, false, BATcount(lcb));
604 0 : bat_destroy(l->data);
605 0 : if (ret != GDK_SUCCEED) {
606 0 : l->data = NULL;
607 : } else {
608 0 : l->data = s;
609 : }
610 0 : bat_destroy(lcb);
611 0 : bat_destroy(rcb);
612 0 : return l->data ? l : NULL;
613 : }
614 :
615 : static rids *
616 743 : rids_semijoin(sql_trans *tr, rids *l, sql_column *lc, rids *r, sql_column *rc)
617 : {
618 743 : BAT *lcb, *rcb, *s = NULL;
619 743 : gdk_return ret;
620 :
621 743 : lcb = full_column(tr, lc);
622 743 : rcb = full_column(tr, rc);
623 743 : if (!lcb || !rcb) {
624 0 : bat_destroy(l->data);
625 0 : l->data = NULL;
626 0 : bat_destroy(lcb);
627 0 : bat_destroy(rcb);
628 0 : return NULL;
629 : }
630 743 : ret = BATsemijoin(&s, NULL, lcb, rcb, l->data, r->data, false, false, BATcount(lcb));
631 743 : bat_destroy(l->data);
632 743 : if (ret != GDK_SUCCEED) {
633 0 : l->data = NULL;
634 : } else {
635 743 : l->data = s;
636 : }
637 743 : bat_destroy(lcb);
638 743 : bat_destroy(rcb);
639 743 : return l->data ? l : NULL;
640 : }
641 :
642 : static subrids *
643 467 : subrids_create(sql_trans *tr, rids *t1, sql_column *rc, sql_column *lc, sql_column *obc)
644 : {
645 : /* join t1.rc with lc order by obc */
646 467 : subrids *r;
647 467 : BAT *lcb, *rcb, *s, *obb, *o, *g, *ids, *rids = NULL;
648 467 : gdk_return ret;
649 :
650 467 : lcb = full_column(tr, lc);
651 467 : rcb = full_column(tr, rc);
652 467 : s = delta_cands(tr, lc->t);
653 467 : if (lcb == NULL || rcb == NULL || s == NULL) {
654 0 : bat_destroy(lcb);
655 0 : bat_destroy(rcb);
656 0 : bat_destroy(s);
657 0 : return NULL;
658 : }
659 :
660 467 : ret = BATjoin(&rids, NULL, lcb, rcb, s, t1->data, false, BATcount(lcb));
661 467 : bat_destroy(s);
662 467 : bat_destroy(rcb);
663 467 : if (ret != GDK_SUCCEED) {
664 0 : bat_destroy(lcb);
665 0 : return NULL;
666 : }
667 :
668 467 : s = BATproject(rids, lcb);
669 467 : bat_destroy(lcb);
670 467 : if (s == NULL) {
671 0 : bat_destroy(rids);
672 0 : return NULL;
673 : }
674 467 : lcb = s;
675 :
676 467 : if ((obb = full_column(tr, obc)) == NULL) {
677 0 : bat_destroy(lcb);
678 0 : bat_destroy(rids);
679 0 : return NULL;
680 : }
681 467 : s = BATproject(rids, obb);
682 467 : bat_destroy(obb);
683 467 : if (s == NULL) {
684 0 : bat_destroy(lcb);
685 0 : bat_destroy(rids);
686 0 : return NULL;
687 : }
688 467 : obb = s;
689 :
690 : /* need id, obc */
691 467 : ids = o = g = NULL;
692 467 : ret = BATsort(&ids, &o, &g, lcb, NULL, NULL, false, false, false);
693 467 : bat_destroy(lcb);
694 467 : if (ret != GDK_SUCCEED) {
695 0 : bat_destroy(obb);
696 0 : bat_destroy(rids);
697 0 : return NULL;
698 : }
699 :
700 467 : s = NULL;
701 467 : ret = BATsort(NULL, &s, NULL, obb, o, g, false, false, false);
702 467 : bat_destroy(obb);
703 467 : bat_destroy(o);
704 467 : bat_destroy(g);
705 467 : if (ret != GDK_SUCCEED) {
706 0 : bat_destroy(ids);
707 0 : bat_destroy(rids);
708 0 : return NULL;
709 : }
710 :
711 467 : o = BATproject(s, rids);
712 467 : bat_destroy(rids);
713 467 : bat_destroy(s);
714 467 : if (o == NULL) {
715 0 : bat_destroy(ids);
716 0 : return NULL;
717 : }
718 467 : rids = o;
719 :
720 467 : assert(ids->ttype == TYPE_int && ATOMtype(rids->ttype) == TYPE_oid);
721 467 : r = MNEW(subrids);
722 467 : if (r == NULL) {
723 0 : bat_destroy(ids);
724 0 : bat_destroy(rids);
725 0 : return NULL;
726 : }
727 467 : *r = (subrids) {
728 : .ids = ids,
729 : .rids = rids,
730 : };
731 467 : return r;
732 : }
733 :
734 : static oid
735 213760 : subrids_next(subrids *r)
736 : {
737 213760 : if (r->pos < BATcount((BAT *) r->ids)) {
738 213293 : BATiter ii = bat_iterator((BAT *) r->ids);
739 213293 : sqlid id = *(sqlid*)BUNtloc(ii, r->pos);
740 213293 : bat_iterator_end(&ii);
741 213293 : if (id == r->id)
742 159741 : return BUNtoid((BAT *) r->rids, r->pos++);
743 : }
744 54019 : return oid_nil;
745 : }
746 :
747 : static sqlid
748 54486 : subrids_nextid(subrids *r)
749 : {
750 54486 : if (r->pos < BATcount((BAT *) r->ids)) {
751 54019 : BATiter ii = bat_iterator((BAT *) r->ids);
752 54019 : r->id = *(sqlid*)BUNtloc(ii, r->pos);
753 54019 : bat_iterator_end(&ii);
754 54019 : return r->id;
755 : }
756 : return -1;
757 : }
758 :
759 : static void
760 467 : subrids_destroy(subrids *r )
761 : {
762 467 : bat_destroy(r->ids);
763 467 : bat_destroy(r->rids);
764 467 : _DELETE(r);
765 467 : }
766 :
767 : /* get the non - join results */
768 : static rids *
769 467 : rids_diff(sql_trans *tr, rids *l, sql_column *lc, subrids *r, sql_column *rc )
770 : {
771 467 : BAT *lcb = full_column(tr, lc), *s, *rids, *diff;
772 467 : BAT *rcb = full_column(tr, rc);
773 467 : gdk_return ret;
774 :
775 467 : if (lcb == NULL || rcb == NULL) {
776 0 : bat_destroy(lcb);
777 0 : bat_destroy(rcb);
778 0 : return NULL;
779 : }
780 467 : s = BATproject(r->rids, rcb);
781 467 : bat_destroy(rcb);
782 467 : if (s == NULL) {
783 0 : bat_destroy(lcb);
784 0 : return NULL;
785 : }
786 467 : rcb = s;
787 :
788 467 : s = BATproject(l->data, lcb);
789 467 : if (s == NULL) {
790 0 : bat_destroy(lcb);
791 0 : bat_destroy(rcb);
792 0 : return NULL;
793 : }
794 :
795 467 : diff = BATdiff(s, rcb, NULL, NULL, false, false, BUN_NONE);
796 467 : bat_destroy(rcb);
797 467 : if (diff == NULL) {
798 0 : bat_destroy(lcb);
799 0 : bat_destroy(s);
800 0 : return NULL;
801 : }
802 :
803 467 : ret = BATjoin(&rids, NULL, lcb, s, NULL, diff, false, BATcount(s));
804 467 : bat_destroy(diff);
805 467 : bat_destroy(lcb);
806 467 : bat_destroy(s);
807 467 : if (ret != GDK_SUCCEED)
808 : return NULL;
809 :
810 467 : bat_destroy(l->data);
811 467 : l->data = rids;
812 467 : return l;
813 : }
814 :
815 : void
816 336 : bat_table_init( table_functions *tf )
817 : {
818 336 : tf->column_find_row = column_find_row;
819 336 : tf->column_find_value = column_find_value;
820 336 : tf->column_find_sqlid = column_find_sqlid;
821 336 : tf->column_find_bte = column_find_bte;
822 336 : tf->column_find_sht = column_find_sht;
823 336 : tf->column_find_int = column_find_int;
824 336 : tf->column_find_lng = column_find_lng;
825 336 : tf->column_find_string_start = column_find_string_start; /* this function returns a pointer to the heap, use it with care! */
826 336 : tf->column_find_string_end = column_find_string_end; /* don't forget to call this function to unfix the bat descriptor! */
827 336 : tf->column_update_value = column_update_value;
828 336 : tf->table_insert = table_insert;
829 336 : tf->table_delete = table_delete;
830 336 : tf->table_orderby = table_orderby;
831 336 : tf->table_fetch_value = table_fetch_value;
832 336 : tf->table_result_destroy = table_result_destroy;
833 :
834 336 : tf->rids_select = rids_select;
835 336 : tf->rids_orderby = rids_orderby;
836 336 : tf->rids_join = rids_join;
837 336 : tf->rids_semijoin = rids_semijoin;
838 336 : tf->rids_next = rids_next;
839 336 : tf->rids_destroy = rids_destroy;
840 336 : tf->rids_empty = rids_empty;
841 :
842 336 : tf->subrids_create = subrids_create;
843 336 : tf->subrids_next = subrids_next;
844 336 : tf->subrids_nextid = subrids_nextid;
845 336 : tf->subrids_destroy = subrids_destroy;
846 336 : tf->rids_diff = rids_diff;
847 336 : }
|