forked from openlink/virtuoso-opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1673 lines (871 loc) · 38 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2014-02-17 VOS Maintainer <vos.admin@openlinksw.com>
Updated package version number to 7.1.0 for final release
Updated version number of VAD packages
Fixed skip test
Updated default settings in virtuoso.ini
2014-02-14 VOS Maintainer <vos.admin@openlinksw.com>
Removed debugging
Merged testsuite
Changed labels in LD views
2014-02-13 VOS Maintainer <vos.admin@openlinksw.com>
Fixed use $MAKE
Simplified killing virtuoso test instances
Fixed set default test options for VOS
2014-02-13 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with setps (oby, gby) and dfe dependency
When placing a dfe record all the setps (oby,gby) between the use
of the value and its computation, the dfe is added as a gby/oby
dependent. When placing predicates that are imported into a dt and
these contain subqs e.g. col = scalar subq where the scalar subq
is independent of the dt being placed, then disable subq caching.
If kept caching on but placed the subq before the dt the subq would
be generated twice because renamed once when importing into the dt
2014-02-13 VOS Maintainer <vos.admin@openlinksw.com>
Fixed reset connection variable before no file error
2014-02-13 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with in predicate and joining to a non-constant s or o
If g has an in predicate and joining to a non-constant s or o, do
not count extra cardinality for the different gs in the list. Assume
1 value just like for g = const. Else will have exponential error
and will end up preferring cartesian products and other nonsense
to the right plan
2014-02-13 VOS Maintainer <vos.admin@openlinksw.com>
Fixed reset connection variable before no file error
Fixed TESTS_ENVIRONMENT for running tests
Fixed use check-local to avoid problems with newer versions of automake
Added missing BIF key_delete_replay
Fixed escape double quote in literals
Updated copyright year
Updated version to 7.0.1-rc1
Updated copyright year
Fixed compiler warnings
Fixedd always use /bin/sh in shell scripts
Added missing grant
Fixed issue with user dba when creating DET folders
Added missing grant
2014-02-12 VOS Maintainer <vos.admin@openlinksw.com>
Fixed bif_define when casemode converts everything to matching case
2014-02-12 VOS Maintainer <vos.admin@openlinksw.com>
Updated GEO functions
* Added geoc_EPSILON
* Added new BIFs for getting Z and M coords
* Added new BIF ST_Affine() (2D transformations only)
* Optimization in calculation of gcb steps to make number of
chained blocks close to square root of lenght of the shape
* Fixed functions behind st_intersects
2014-02-11 VOS Maintainer <vos.admin@openlinksw.com>
Added missing function rdf_vec_ins_triples
Fixed argument check
Treat single db file as a single segment with one stripe
Fixed check c_server_threads
Added new settings EnableMonitor, CreateGraphKeywords, QueryGraphKeywords
Fixed initialization of box before plugins/bif_define
Fixed geo box support for large polygons
Fixed use volatile in order to avoid wrong calc leadign to gpf
Fixed when one thread is needed, just use current one
Fixed geo box for large polygon
Fixed check argument is string
Fixed use proper len of dcs array
Fixed do not use bootstrap to exec as it will leave locks
Fixed for exact p stat
Fixed flush on vectored execution in single
Fixed typo
Fixed call registry_set from within TXN mutex
Added initial code for ordered count distinct and exact p stat
Fixed issue with del/upd in cluster with triggers present
Added support for buildin inverse functions
Fixed datetime conversion
2014-02-10 VOS Maintainer <vos.admin@openlinksw.com>
Fixed st_contains() and added new st_may_contain()
Fixed removed crlf
2014-02-10 VOS Maintainer <vos.admin@openlinksw.com>
Updated GEO functions
* Added BIF st_linestring()
* Added BIF st_transform_by_custom_projection()
* Fixed mp_box_copy() of long shapes
* Fixed range checks for coordinates
2014-02-10 VOS Maintainer <vos.admin@openlinksw.com>
Moved geo bif functions from geo.c to bif_geo.c
Fixed calculation of lat/long ratio for proximity checks
Added initial draft of st_intersects() for all types except types with arcs
Extended functionality of st_intersects()
2014-02-10 VOS Maintainer <vos.admin@openlinksw.com>
Fixes for GEO
* Added new BIFs ST_Translate() and ST_TransScale()
* Fixed bboxes in geo_deserialize
* Fixed st_may_intersect for points
* Minor fixes to other geo BIFs
2014-02-10 VOS Maintainer <vos.admin@openlinksw.com>
Removed deprecated functions
Fixed use correct name
Added new functions bif_list_names() and bif_metadata()
Updated bif metadata support
Added support for local dpipes
2014-02-07 VOS Maintainer <vos.admin@openlinksw.com>
Fixed do not do sp stat if very few rows on the seg
Fixed check for null
Fixed rdf type card estimate in jp
2014-02-07 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with IN pref on a col and an eq on the same
If there is an in pred on a col and an eq on the same the in is
likely redundant and should not lead to each value in the in being
counted as an execution of the operator. This is only if the in
is by index and there is no other conds
2014-02-07 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with running out of memory before making first plan in subq
Added new flag enable_joins_only
Fixed issue with ro2lo when IN pred and on a col in rdf
2014-02-07 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with deduplication
If ssl is qr global, it is not a vector and needs no deduplication
if occurs as param but does need a copy if in a gby key, as these
are always vectored
2014-02-07 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with ssl deduplication
Due to ssl deduplication in the event of parameters that can be
vectored with ssls, it can happen that there are 2 ssl with the
same inx. If so there will be double free if these are placed both
in the freeable ssls. So do not put duplicate inxes in freeable
ssls.
2014-02-07 VOS Maintainer <vos.admin@openlinksw.com>
Fixed debug code
Fixed issues loading Linked Geo Data
Added missing prototypes
2014-02-06 VOS Maintainer <vos.admin@openlinksw.com>
Updated version number of fct VAD package
Updated version of conductor VAD package
Fixed normalize paths procedure in WebDAV
Added missing security CA page to VAD
Fixed convert pkg name to lower case when looking for vad
Added new property in virtrdf:label
2014-02-05 VOS Maintainer <vos.admin@openlinksw.com>
Updated Debian files
Updated windows build files
2014-02-04 VOS Maintainer <vos.admin@openlinksw.com>
Added trigger for delete temporary graphs used for WebID verification
2014-02-03 VOS Maintainer <vos.admin@openlinksw.com>
Fixed UI in content management pages
Use new sponger auth function if installed
Updated copyright year
Fixed test after API changes
Added function xenc_x509_cert_verify_array
Added function x509_verify_array
Fixed bug with sorting and leaving page
Fixed bug with 'Apply changes to all subfolders and resources' checkbox
Fixed check for related VAD packages
Added new CONFIGURE methods to DETs to unify folder creation
Added verify for WebDAV DET folders
Added check for newer binary
Fixed mounted public folder shoudl not have +r for public
Fixed no default graph selection in /describe
Fixed issue with spaces in URIs
Added missing grant
Added new bifs set_by_graph_keywords and tweak_by_graph_keywords
Changed describe mode for PivotViewer link
Added graph param in FCT permalink
Fixed FCT datatype links
Fixed the curie may contain UTF-8, so mark string accordingly
Changed default sort order to date (desc)
Fixed error when rdf box is returned
Updated VAD version number
Fixed DAV rewrite issue
Fixed UI in content management pages
Fixed RPC security issue
Fixed bug deleting graphs
Fixed manae sponger front page switch to use VAL if installed
Fixed avoid conversion of mode from 1st page
Updated UI of some pages related to delete action with common icon
Added new page in Conductor for managing CA root certificates
Added optimization of permission verification
Fixed using external groups in ACLs
Fixed bugs related to searches after execution of some actions
Fixed schema for resource URLs in mail content for share/unshare resources
Fixed URL transformation http <==> https
Removed duplicate procedure WEBDAV.DBA.user_name
Fixed issue with DAV rewrite
Added new CONFIGURE methods to DETs to unify folder creation
Fixed use correct graph for WebID
Fixed use VAL to checkout authentication information if installed
Fixes for WebID
Added optimization of WebID verification
Fixed use of external groups in ACLs
Fixed dav to use proper escape for graphs when uploading
2014-02-01 VOS Maintainer <vos.admin@openlinksw.com>
Fixed prototype and function rdtsc to use uint64
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Fixed extension type lookup when base type has no namespace
Check default param array size
Fixed cannot run w/o lt_threads of zero
Fixed if bif is a user defined agg, mark it
Check there is no more ces on page than fit in max size pm
Fixed check for NAN and INF in float valued geo inx
Fixed issue combining results of scalar subq which splits by set
Fixed remove MaxDirtyBuffers as this will make tsuite slow
Added settable txn after image limit
Automatic SPARQL LOAD SERVICE ... DATA in /sparql/ web page.
Fixed issues in handling geo predicates in SPARQL
Fixed check for NULL arguments to geo_length function
Fixed issues in sparp_rvrs_have_same_fixedvalue
Fixed GPF on non-geo arguments to st_intersects()
Fixed when persisting triples use silent flag for log_enable
Fixed check for row wise code local with the no-index flag
Fixed is cv is local, use flag to indicate use of index is considered not local
Fixed issues with bits_mix func
Fixed copyright year
Fixed max dirty should be between 20% and 90%
Fixed issue with top oby where stmt in index order
Fixed issue with qry with oby n a scalar subq with a top oby inside
Added check if ssl is not -1 or -2 which is special
Fixed issue with many refs to a cr in current search
Fixed typos leading to inability to compile
Fixed issue with deleting procedure across all replicas
Fixed stub for cluster
Added option to allow restricting number of id ranges for new IRIs
Fixed issue with keepalives
Added missing flag about rdf quad upgrades from v6
Fixed mem leaks when wrong number of args is used
Check if distinct is redundant when gb exists and remove
Fixed must set sp_col when spec is made and referencing column
Added missing keyword
Added support for <(type,type,...)type::sql:function> trick in order to eliminate conversion of types on function call
Added function prototype
Fixed issue with trans on local daq call
Fixed exec in sparql compiler and other issues
Added stat import and export
Added flag for serialization
Added Functions for accessing individual rings of polygons
Fixed spar_shorten_binv_dataset when an equiv is tightened during the run
Fixed issue sparp_equiv_get_ro(): attempt of returning NULL
Added per table lock mode option
Added func to clear iri name cache
Fixed FCT query error
Added count read asides for stats
Fixed vdb stubs
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Fixed RDF view to use multiple quad maps
The "fill" routine now uses QUAD MAP <qm1> <qm2> ... <qmN> {...}
syntax, resulting in better BREAKUPs.
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Fixed UNION and BREAKUP
* Fix for calculation of valmode of equivs in UNIONs with constants
* Fix for UNION vs BREAKUP decision for select ?o { ?s ?:p ?o }
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Renamed triple.qm_iri_or_pair is to sinv_idx_and_qms
Use dc append box copies
Check which rtree to use in geo preds
Fixed support for ST_GeometryN()
Added support for NULL arguments in spatial functions
Added initial support for DE9IM bitmasks
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Added new geo functions
* GeometryType()
* ST_NumGeometries()
* st_get_bounding_box_n()
* Partial implementation of ST_GeometryN()
* Fixes for GEOMETRYCOLLECTION
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Fixed compilation of FILTER (st_intersects(?o1, ?o2))
Added support for NUKLL arguments in spatial functions
Fixed codegen for BREAKUP in queries on RDF views
Fixed typo in error message
Fixed check that set nos are copied when aggr, not for hash filler
Fixed no graph keywords
Added safety check
Fixed check if hash build comes out empty
Fixed inlined subq nodes do not count for ssl ref, only for ssl branch copy
Fixed copy hash filler subq tree before destructive change by scope
Fixed issue with constant card when inlining conscutive hash sources
Fixed do subq sources in qfs recursively
Fixed sort the out slots of a qf/dfg by inx to get predicatable order
Fixed do not rescope when removing table from join
Fixed the after test of a dt must survive inlining the dt
Fixed a derived table with a breakup cannot import preds from enclosing qr
Use VAL to check authentication information if installed
Added query test framework API
Fixed error when rdfbox is returned
Fixed compiler warnings
Fixed check for getrusage
Fixed compiler warning
Fixed declaration after statement
Updated version of VAD
Fixed issue in rewrite
Fixed UI ofn content management pages
Fixed MD5(NULL) should return NULL
Fixed check if pred is true or false to prevent crash
Fixed check regexp pattern to be string
Added check for non-string argument to regexp
Fixed use strict array check for gvector sort
Fixed dynamic local for vectored
Added sort for column privs to always get same result
Fixed mem leak when using xcontains and procedure view
Fixed issue with dpipe in union branches
Fixed save pre-code of qn across qnode instr
FIxed target ssl on cond in breakup
Added more virtrdf:qmfHasCheapSqlval properties
Fixed temp disabled code
Smarter ssg_smallest_union_valmode in order to get sql valmode instead of long valmode when sqlval is cheaper.
Fixed describe on non-exclusive rdf view in virtrdf:DefaultQuadStorage
Fixed do not crash on bitmap pos out of range, return it is at end and log error
Fixed check if left dfe is actually a column
Fixed take length from dv
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Added initial support for list of quad maps in SPARQL BI
SPARQL-BI extended:
list of quad maps in QUAD MAP X Y Z {...}
instead of a single quad map in QUAD MAP X {...}.
2014-01-28 VOS Maintainer <vos.admin@openlinksw.com>
Fixed check for unions in dts inside aggregation/oby
Added support for geosparql wkt type literal as synonym
Fixed geo pred in sql table
Fixed geo pred in a sql table
Added wrapper for xqf_str_X bifs as they return different types
Added initial support for vectored iri to id
Fixed the function printing in http cannot be run in QP
Fixed box flag setting functs are not transferable
Fixed take age limit as 2/3 of it to prevent sleep on bp mtx
Fixed mask out the non relevant bits
Added new codegen for initial fill of RDB2RDF
Fixed numeric samples can be ints for a num col
Fixed count incr in seq scanned as sampled rows on col wise table
Added get min/max for a few more dtps
Fixed added dummy string collation order for GEO objects
Fixed box check
Fixed anyfication in itc set blob col is bypassed, in order to ret deserialized obj
Fixed max length should be int not short, in case of long any cast
Added new functions vec_length and vec_ref
Fixed check if ht is empty
Fixed always return box, not number
Removed unused function call
Added dfe filter
Fixed check batch sz
Added check for system tables in ddl_changed
Fixed compiler warnings
Added check for stack size limit
Added vdb stubs
Added functions to allocate session pool
2014-01-06 VOS Maintainer <vos.admin@openlinksw.com>
Fixed shorten thread mtx sect
Fixed profile to avoid divide by 0
Fixed do not print unused slots
Fixed safe plan of slevel and isolation of item
Added option to set mp block size of less contention in run stored proc
Fixed messages
Fixed autocompacting to prevent sleeping n bp mtx too often
FIxed count flushable range worth of bufs and flush if too many
2014-01-06 VOS Maintainer <vos.admin@openlinksw.com>
Additional sync fixes
* Use max dirty to set ranges of potentially fushable buffers
* Trigger flush earlier to interleave flush and bulk load
2014-01-06 VOS Maintainer <vos.admin@openlinksw.com>
Added diag msg for high write rate
Added support for multithreaded sync/flush
Additional RPC checks
Fixed portability of rdtsc function for timing/profiling
Removed deprecated file
2013-12-10 VOS Maintainer <vos.admin@openlinksw.com>
Updated version t 6.1.9-dev to star new release cycle
Fixed version number of VAD package
Fixed version number of VAD package
Updated ChangeLog
Updated version to 61.8 for final release
Fixed delay in bpel testsuite
Fixed packing list
Use git2cl script to generate ChangeLog
Added missing file to distribution
Updated NEWS
Fixed only free regular boxes
Fixed creation DET IDs needed for ETAGs
2013-12-06 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issues with HTML edit code
Fixed inactive subtab on Linked Data | Graphs page
2013-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issues building on Windows
Fixed issue opening Linked Data | Schemas tab
Fixed compiler warnings
2013-12-03 VOS Maintainer <vos.admin@openlinksw.com>
Fixed wrong define
Fixed use unbox to show proper pid
Added enable_inline_sqs flag for dbf_descs
Fixed missing protection on qr_ref_count
Fixed issues with ordered gby
Fixed integer overflow in cost est by using double
Fixed get error code from correct thread
Added optimization from analytics branch
Fixed issue with heterogeneous
Merged missing patch for chash
Fixed when column is blob, do not try to convert string const to blob
Fixed small bugs
FIxed issues with compact
Fixed query in order to fix scheduler to run
Allow redef of default namespace in same scope for historical reasons
Fixed crash in turtle sniffer
Removed duplicate prototype
Added define to enable large inst
Missing define
Fixed comments
Fixed enable large path elements to support DI sigs
Fixed if text is null put a zero
Fixed make ssl dtp any in order to get complete boxes
Fixed issue with heterogenous
Fixed memleak
Fixed missing stub
Removed deprecated call
Added missing stub
Fixed inline subq if breakup
Fixed remove unused call
Fixed comment out debug lines
Fixed issue with ssl ref if shared ins qnode after a union all aggr
Fixed issue with blob column
Fixed wrong execution plan
Fixed issue with vectored proc call from with set mask
Fixed if mt txn non txn insert then do not autocommit on main
Fixed itc_clear seems to leave pages, it should only clean siblings
Fixed issue with xqr serialization
Fixed stub func
Fixed a dt implies unknown order for gby
Fixed check if pred avail
Fixed issue with text pred
Initial implementation of non vect clause
Initial implementation for not vect sect in proc
Fixed issue user defd agg and parallelization
Fixed reset col dtp when coercing type to more generic
Fixed crash on transitive queries
Fixed if all equalities on same column, convert OR to IN list
Fixed if all equalities on same column, convert OR to IN list
Fixed limit OR to union to save stack
Fixed better support for combination of T_DIRECTION 3 and T_STEP (var)
Fixed cost of gby, recognize rdf tyupe rped also if literal iri id
Fixed do special card for rdf type
Fixed issue in cost based optimizer
Fixed better condition if o2s pattern
Fixed preserve initial order
Fixed force getting p stat first when making initial join order plan
Fixed col samples hash table in setting p stats when inf
Fixed check inx bounds
Fixed put size cap on hash join build
Fixed geo cost of non point geos where no explicit prec
Fixed consider if dyn batch sz is on for costing of inx lookups
Fixed check NAN and INF
Fixed malloc debug
Fixed mark allocs
Fixed memory leak when signalling an error inside vec slots assignment
Fixed bad bif definition
Fixed initialize output array
Fixed support of clone for binding invocation
Fixed when sorted set is smaller than input, break as rest is empty
Fixed issue with parallel rdf materialization
Fixed for small colwise table sample, do not look at left dummy on leaf
Fixed do not reset the in sample bit on non leaf pages
Fixed check early if col pred is suitable for LIKE
Fixed chash fill is single state even if qr is multistate
Fixed issues with streaming gby chash
Fixed wrong compare for distinct when more than one key part
Fixed use temp space on stack for gb values
Fixed hash source can be head of qf if separately partitioned
Fixed issues with mem pool
Fixed when mem is from pool, do not free, just replace
Fixed use dk api
Fixed use boxes
Fixed memory leak
Fixed use non box dcs, less copying
Fixed issues with FT index
Fixed error msg
Fixed do not aquire log mtx if nothing to log
Fixed in col ac, ceic must be defined in itc compact
Fixed check only running clients
Fixed typo
Fixed only check for remap in remap ht in debug mode
Added support for large QI instances like ecrm rdf view
Fixed mtx names
Fixed use boxes
Added opt to keep n array of buffers containing the free set of a dbs
Fixed triggers which reference rdf should be recompiled after rdf init is done
Fixed memory leaks
Fixed memory leaks
Fixed when returning null make sure acc is released to avoid mem leak
Fixed memory leaks
Fixed use sized free on gz compress
Fixed use proper filename of query log
Added sparql cap for v7 mem ck
Fixed do not use mtx for non-debug binary
Fixed the size of av items a known, so make correct counts
Fixed need counter of allocas, not approx size
Fixed more non sz free
Fixes for xm parse and sized free
Added XML parser malloc/free with size
Fixed thr mem cache clear of aq and ws threads
Fixed issues with mem dbg
Fixed unregister mp before free
Added mtx to protext mp hash lookup
Added mem counters
Fixed use size_t for compiler mem pool max
2013-12-02 VOS Maintainer <vos.admin@openlinksw.com>
Added initial mem checks
Added malloc status report
Added malloc status report
Fixed check if running on internal client
Ignore .patch files
Fixed issue in token parsing
Fixed duplicate function after merge
Fixed memory leak
2013-12-02 VOS Maintainer <vos.admin@openlinksw.com>
Updated geo support
* Added initial support for st_may_intersect
* Improved I/O for geometries in SQL
* Added support for boxes
* Fixed non txn insert
* Fixed bootstrap cli
2013-11-28 VOS Maintainer <vos.admin@openlinksw.com>
Updated version to 6.1.8-rc1
2013-11-27 VOS Maintainer <vos.admin@openlinksw.com>
Added missing stub
Fixed missing copy