-
Notifications
You must be signed in to change notification settings - Fork 210
/
ChangeLog
26064 lines (13490 loc) · 647 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
2024-06-10 Patrick van Kleef <[email protected]>
Updated version to 7.2.13
Merge branch 'feature/vos-fixes' into develop/7
Updated version to 7.2.13-rc
Updated Changelog
Updated NEWS.md
2024-06-07 Patrick van Kleef <[email protected]>
Updated version to 7.2.13 engine 3240
2024-06-07 Mitko Iliev <[email protected]>
Fixed issue reading large chunked data in SSE client
2024-06-07 Patrick van Kleef <[email protected]>
Updated Conductor VAD version
2024-06-07 Mitko Iliev <[email protected]>
Fixed missing check for optional table
Fixed issue when initialization of snapshot fails
Fixed issue with wrong vad file path during vad install
Fixed save CORs via WS wizard duplicate cors options
2024-06-06 Mitko Iliev <[email protected]>
Fixed preserve qualifier when updating trigger
2024-06-06 Patrick van Kleef <[email protected]>
Updated copyright
2024-06-04 Patrick van Kleef <[email protected]>
Fixed use virtuoso_ini_item_value where appropriate
2024-06-04 Mitko Iliev <[email protected]>
Fixed issue calculating hash when target graph is null
2024-05-23 Patrick van Kleef <[email protected]>
Fixed warning of invalid escape sequence
2024-05-07 Patrick van Kleef <[email protected]>
Fixed typo and small cleanups
2024-05-07 Mitko Iliev <[email protected]>
Fixed missing checks for service and query arguments
2024-05-07 Patrick van Kleef <[email protected]>
Fixed issue with stack var clobbered by setjump/longjump
2024-05-07 Mitko Iliev <[email protected]>
Fixed MD5 context should be kept on connection global and not reused
This fixes #1287
2024-05-07 Patrick van Kleef <[email protected]>
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-05-07 Mitko Iliev <[email protected]>
Added testsuite entries for recently fixed issues
2024-05-07 Patrick van Kleef <[email protected]>
Fixed use vsnprintf
2024-05-07 Mitko Iliev <[email protected]>
Fixed various missing BIF functions argument checks
This closes #1286, closes #1288, closes #1289, closes #1290, closes #1291,
closes #1292, closes #1293, closes #1294, closes #1295
2024-05-02 Patrick van Kleef <[email protected]>
Fixed compiler warning
Added new test
2024-05-02 Mitko Iliev <[email protected]>
Backport from v8
For string buffers, round to next large size, see that there is 16 bytes
of margin after the last for sse string ops so no ref to unmapped at
end of strings
2024-05-02 Mitko Iliev <[email protected]>
Fixed issue with hash in group by (fixes #1285)
2024-05-02 Patrick van Kleef <[email protected]>
Fixed length calculation in REPEAT (fixes #1282)
2024-05-01 Patrick van Kleef <[email protected]>
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-04-30 Mitko Iliev <[email protected]>
Added new tests for recent cases
Fixed missing copy of parameter value (fixes #1284)
Fixed missing sz check (fixes #1283)
Fixed make sure position is 1-based
Fixed offset overflow (fixes #1281)
Fixed issue trying to normalize an invalid numeric (fixes #1279)
2024-04-29 Patrick van Kleef <[email protected]>
Merge branch 'feature/2024_04_29_fix_jena3_4' into develop/7
Rebuild Jena 3/4 providers
2024-04-29 Sergey Malinin <[email protected]>
Fixed missing properties during initialization of a new Model
VirtDataSet methods getDefaultModel()/getNamedModel() doesn't apply all
properties(like queryTimeout and etc) to the newly created Model
2024-04-09 Mitko Iliev <[email protected]>
Fixed vec input should be declared as boxed i.e. array (Fixes #1254)
2024-04-04 Mitko Iliev <[email protected]>
Fixed unfolded bifs have to have serial to distinguish separate calls (fixes #1276)
2024-04-02 Mitko Iliev <[email protected]>
Fixed issue with transaction boundary
Fixed memory leak
2024-03-28 Patrick van Kleef <[email protected]>
Upgraded sparql_demo build process to use vadpacker
Removed deprecated script
Upgraded bpel build process to use vadpacker
2024-03-26 Patrick van Kleef <[email protected]>
Fixed missing condition for sponger settings
2024-03-25 Patrick van Kleef <[email protected]>
Disabled unused filesystem vad packages
Updated DBpedia VAD version
Fixed encoding
2024-03-25 Patrick van Kleef <[email protected]>
Added new prefixes
gold: <http://purl.org/linguistics/gold/>
ov: <http://open.vocab.org/terms/>
2024-03-25 Patrick van Kleef <[email protected]>
Fixed set default for dbp_decode_iri to ON
Added initial support for /datatype
2024-03-25 Patrick van Kleef <[email protected]>
Fixed installation scripts to remove need for dbpedia_init.sql
The dbpedia_pl.sql now contains the relevant PL code from
dbpedia_init.sql.
The dbpedia_del.sql removes all the old and sometimes confusing rewrite
rules etc., that added an unnecessary layer of complexety.
Moved the /void rules and vdirs to dbpedia_local.sql.
2024-03-25 Patrick van Kleef <[email protected]>
Upgraded DBpedia build process to use vadpacker
Upgraded iSPARQL build process to use vadpacker
Upgraded Conductor build process to use vadpacker
Upgraded RDB2RDF build process to use vadpacker
Small cleanup for FCT vad building
Upgraded to vadpacker v1.8
2024-03-25 Mitko Iliev <[email protected]>
Fixed issue with MaxMemPoolSize
Allow MaxMemPoolSize to be 0 (unlimited) or from 400M (default)
to INT64_MAX
2024-03-25 Mitko Iliev <[email protected]>
Fixed issue freeing n-way nic arrays
The n-way nic arrays are allocated a bin box, should free as such.
2024-03-22 Patrick van Kleef <[email protected]>
Fixed 'Read/Write wait on column page...' should be debug messages
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-03-22 Mitko Iliev <[email protected]>
Fixed geometry objects must be represented as strings (Fixes #1274)
Added new tests for recent cases
Fixed 64bit arith overflow (Fixes #1270)
Fixed missing check for star (Fixes #1269)
Fixed set dc type on grouping sets (Fixed #1268)
Fixed check num cols in union branches when subq non-terminal is used (Fixes #1267)
Fixed check for control exp over non-terminal not-allowed/can't be handled (Fixes #1266)
Fixed ft exp & similar not allowed in control exp (Fixes #1265)
Fixed negative column offset (Fixes #1264)
Fixed test for comma exp not allowed in arith exp (Fixes #1263)
Fixed cost on void geo function (Fixes #1262)
Fixed memcopy buffer overflow (Fixes #1259)
2024-03-22 Mitko Iliev <[email protected]>
Added stack overflow ck (Fixes #1258)
Also resolves #1271, resolves #1272
2024-03-22 Mitko Iliev <[email protected]>
Fixed alloc double dep on demand as as int (Fixes #1257)
Fixed ambiguous subq return (Fixes #1253)
2024-03-20 Mitko Iliev <[email protected]>
Fixed issue with non-string copy (Fixes #1252)
Fixed non iri_id and non such as iri should be error
Added cumulative patch for cube/rollup and bad dt artithmetics
Added new tests for recent cases
Fixed missing check for const in predicate (fixed #1251)
2024-03-15 Mitko Iliev <[email protected]>
Added new tests for recent cases
Fixed const in predicate can be removed by optimiser (fixed #1250)
2024-03-14 Mitko Iliev <[email protected]>
Added test for vec param cast any/str/null
Fixed issue on any ssl w/h nulls (fixes #1249)
2024-03-12 Patrick van Kleef <[email protected]>
Fixed issues with clang 15 and newer compilers
Clang now throws an error on several constructions that previously
only returned a warning, such as:
* incompatible function pointer types
* incompatible integer to pointer conversion
This causes problems when building on the latest macOS XCode release as
well as the upcoming new Ubuntu 24.04
2024-03-11 Mitko Iliev <[email protected]>
Fixed TSV output to use SPARQL 1.1 TSV specification
See: https://www.w3.org/TR/2013/REC-sparql11-results-csv-tsv-20130321/#tsv-table
2024-03-08 Patrick van Kleef <[email protected]>
Removed unused argument artifact
Fixed issues reported by link time optimizer (LTO)
2024-03-04 Patrick van Kleef <[email protected]>
Merge branch 'feature/vos-fixes' into develop/7
Added missing tsuite entries
Updated Conductor VAD version
2024-03-04 Tim Haynes <[email protected]>
Conductor: Inclusion.Engine Sites: constrain site-name field to non-space characters only
2024-03-04 Mitko Iliev <[email protected]>
Fixed issue with join and order by on null result (fixes #1241)
Keep set control node together with outer sequence end node in both
left and right outer join
2024-03-04 Mitko Iliev <[email protected]>
Merged back safe logical_* bif names from v8
Fixed issue importing bad IRI pattern
Fixed issues with microdata parser
Fixed debug printf only in DEBUG modeF
Added optional alternative names for server X.509 certificate
Fixed issue getting client status during swapping or www maintenance
Fixed issue collecting ft stats during checkpoint
2024-02-29 Patrick van Kleef <[email protected]>
Updated FCT vad version
Removed deprecated scripts
Fixed namespace of inference rules graphs
Fixed check for python executable
Upgraded FCT build process to use vadpacker
Added vadpacker tool
2024-02-20 Mitko Iliev <[email protected]>
Fixed issue on rehash if dict_put is used in select list
2024-02-15 Patrick van Kleef <[email protected]>
Fixed issue with basename on older machines
Fixed allow building against openssl 3.2.x
2024-02-15 Patrick van Kleef <[email protected]>
Fixed small issues with sql_to_c.awk script (fixes #1244)
* Added version to header
* Fixed include lines
* Fixed warnings on unknown regexp operator
* Updated documentation that GNU awk versions 3.11 up to and including
5.3.0 have been validated
2024-02-15 Patrick van Kleef <[email protected]>
Fixed issue with bad index op ref in table dft (fixes #1245)
Moved check for dio_terms into the correct block.
This fixes an issue introduced by commit
fb0cf1cdd1ec20e226d8f0eb41710eaf8093437b
2024-02-14 Sergey Malinin <[email protected]>
Fixed issue building Windows binaries
2024-02-14 Patrick van Kleef <[email protected]>
Updated version to 7.2.13-dev to mark the start of a new development cycle
2024-02-13 Patrick van Kleef <[email protected]>
Merge tag 'v7.2.12' into develop/7
Tagged for release
2024-02-13 Patrick van Kleef <[email protected]>
Merge branch 'release/7.2.12' into stable/7
Updated ChangeLog
Updated version to 7.2.12 engine 3239
Updated NEWS.md
Updated NEWS.md
Fixed portability issues
Updated version to 7.2.12-rc2
2024-02-13 Mitko Iliev <[email protected]>
Fixed dav URI esc should follow escapeURI char percent encoding rules
Revert dks_esc_uri table for %H compat
2024-02-12 Mitko Iliev <[email protected]>
Fixed issue catching error from chash_error
Fixed DAV URLs must encode following rules as for encodeURI
Fixed chars like ® are not encoded properly as URL
Fixed broken hrefs in dav folder listing
2024-02-09 Mitko Iliev <[email protected]>
Fixed issue optimizing left outer joins on sparql queries
See also:
Fixed issue with outerjoin when condition is always true or false
(fixes #1236)
2024-02-06 Patrick van Kleef <[email protected]>
Updated version to 7.2.12-rc1
Set default value of ThreadCleanupInterval and ResourcesCleanupInterval to 1 for new installations
2024-02-06 Mitko Iliev <[email protected]>
Fixed complete table name before quoting
2024-02-06 Patrick van Kleef <[email protected]>
Fixed wrong arguments to get_fieldProperty
2024-02-06 Mitko Iliev <[email protected]>
Fixed issue with drop quad map graph
2024-02-06 Mitko Iliev <[email protected]>
Fixed issues in rdfview creation
* Added backup before rdf view creation
* Fixed mismatch of a URL parameter and control
2024-02-06 VOS maintainer <[email protected]>
Fixed rr:template by default is IRI unless column, dt or lang are given
2024-02-06 Mitko Iliev <[email protected]>
Fixed column CaSeMoDe
2024-02-06 Mitko Iliev <[email protected]>
Added quad map iri parameter
Do not use same name as r2rml physical graph as this confuses the
generation and maintenance
2024-02-06 Mitko Iliev <[email protected]>
Fixed case to ucase for case insensitive lookup
2024-02-05 Patrick van Kleef <[email protected]>
Merge branch 'feature/fixes' into develop/7
2024-02-05 Mitko Iliev <[email protected]>
Added WSOCK.DBA.SEND_PING() and support to handle pong reply
2024-02-05 Mitko Iliev <[email protected]>
Fixed issue in ontology generation
Ontology generaties wrong ttl chunk if column is selected as label
2024-02-05 Mitko Iliev <[email protected]>
Fixed remove shadow variables from csv_vec_load()
Fixed issue importing CVS with missing EOL on last line
Fixed obj2xml() should be public
2024-02-05 Mitko Iliev <[email protected]>
Fixed issues with obj2json()
* Added option to indent the output
* Fixed serialization to use session instead of concat() on each piece
2024-02-02 Mitko Iliev <[email protected]>
Added HTTP CORS pattern support
2024-01-31 Mitko Iliev <[email protected]>
Fixed issue with outer end in parallel
Fixed issue getting lock information for status()
Fixed issue with status for non dba user
Fixed compile with MTX_DEBUG
Added check for dc values ref
2024-01-31 Patrick van Kleef <[email protected]>
Added uptime to status()
2024-01-31 Mitko Iliev <[email protected]>
Fixed issue with user agg and constant in group by
when you have a user agg in sparql it may have reduced iri in gby,
do not remove the gby as ua will not go as vec
2024-01-31 Mitko Iliev <[email protected]>
Fixed issue getting dtp in rdf box case
Fixed clear http method at session cleanup
2024-01-31 Patrick van Kleef <[email protected]>
Added support for VMsize and page faults in status() output
2024-01-31 Mitko Iliev <[email protected]>
Added initial watchdog on VMsize (experimental)
Fixed issue sending Content-Length when not expected
2024-01-31 Mitko Iliev <[email protected]>
Fixed issue casting string to numeric
single 'e' is not a number
2024-01-31 Mitko Iliev <[email protected]>
Fixed issue with left outer join with dummy function call (fixes #1239)
Fixed missing reset for NULL bit in dc_to mask (fixes #1238)
Fixed remove constants before expanding gby/oby with missing cols
2024-01-31 Patrick van Kleef <[email protected]>
Added sys_stat('swap_guard_last_majflt') to get last value
2024-01-31 Mitko Iliev <[email protected]>
Added configurable swap guard treshold
Fixed sql fragment may have div operation (bug#19433)
Fixed issue refreshing status variables
Fixed grants must be added to SPARQL_SELECT role
Removed rdf_resolve_labels_s case
Fixed allow binary frames, same as text from server pov
Add support ping/pong for websock
Fixed websocket framing on text messages
Indicate what WS frame type is in error
2024-01-16 Mitko Iliev <[email protected]>
Added test for recent fixes
Fixed issue with outerjoin when condition is always true or false (fixes #1236)
Fixed sign() returns integer
Fixed missing clear of NULL flags (fixes #1235)
2024-01-12 Mitko Iliev <[email protected]>
Fixed issue when field type cannot be detected
2024-01-12 Patrick van Kleef <[email protected]>
Fixed missing entry for .md text/markdown
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-01-12 Mitko Iliev <[email protected]>
Added tests for recent issues
2024-01-12 Mitko Iliev <[email protected]>
Fixed issue with unix timestamp to dt conversion (fixes #1233)
Unix timestap to dt can be converted only if date is later than 4800bc
and is no more tan 22bit number for year see dt struct
2024-01-12 Mitko Iliev <[email protected]>
Fixed check for group by (fixes #1232)
Fixed issue with STAR in gby/oby (fixes #1231)
Fixed issue with non-column (fixes #1230)
2024-01-12 Mitko Iliev <[email protected]>
Fixed issue with trigger/proc params (fixes #1229)
params should be copied if in group by or order by
2024-01-12 Mitko Iliev <[email protected]>
Fixed check type member for specific st (fixes #1224)
Fixed missing check (fixes #1223)
Fixed check for opt. shortcuts in pred (fixes #1222)
Added tree sz check as st->type not always sufficient (fixes #1221)
Fixed missing check for freetext field (fixes #1220)
Fixed missing check for last ts (fixes #1219)
Fixed missing check (fixes #1218)
Fixed missing check (fixes #1217)
Fixed check if prev has a key (fixes #1216)
Fixed issue right outer join with constant false (fixes #1214)
Fixed NaN behaviour in cmp_double same as ordering (fixes #1213)
Fixed import w/o columns detected should not be syntax error
Fixed FS directory browsing does not need SQL/VSP user account
2024-01-12 Patrick van Kleef <[email protected]>
Fixed check for broken 2w link
2024-01-09 Patrick van Kleef <[email protected]>
Updated Copyright to 2024
2023-12-19 Patrick van Kleef <[email protected]>
Fixed alignment of eye.svg inside password input field
2023-12-19 VOS maintainer <[email protected]>
Backported CSV load functions from v8
* Added support loading from DAV
* Added support for date string
* Added support for INSERT INTO/REPLACING
* Fixed issues with state engine
2023-12-18 Mitko Iliev <[email protected]>
Fixed CSV import accessing outside of header array
Fixed http log records partial request over 4k
2023-12-18 Patrick van Kleef <[email protected]>
Removed old WS_OLD_LOG code
Added auto-commit mode flag
2023-12-18 Mitko Iliev <[email protected]>
Fixed issue when response is chunked/gzip by app
When response is chunked/gzip by app we should send back zero chunk
anyway, otherwise clients do not agree
2023-12-18 Mitko Iliev <[email protected]>
Fixed do not use gzip if no content is allowed
Fixed issue with DAV_LINK double escape UTF-8
2023-12-15 Patrick van Kleef <[email protected]>
Fixed missing icons
Fixed printf format for size_t arg
2023-12-15 Mitko Iliev <[email protected]>
Added support for password show/hide in login dialog
2023-12-15 Patrick van Kleef <[email protected]>
Merge branch 'feature/fuzzer-fixes' into develop/7
2023-12-15 Mitko Iliev <[email protected]>
Added testsuite entries for recently fixed issues
Fixed check for table def (fixes #1212)
2023-12-15 Mitko Iliev <[email protected]>
Fixed issues in orderby/groupby (fixes #1210)
Cannot have group by count(x), y without grouping on y or aggregate on
y same as in select list
2023-12-15 Mitko Iliev <[email protected]>
Fixed check number of arguments to geo contains (fixes #1209)
Fixed check values before copying invalid data (fixes #1208)
Fixed check for date/time/datetime/timestamp datatypes (fixes #1206)
Fixed remove duplicate keys in oby/gby (fixes #1205)
2023-12-14 Mitko Iliev <[email protected]>
Fixed issue with all const in group (fixes #1204)
2023-12-14 Patrick van Kleef <[email protected]>
Merge branch 'feature/2023_09_28_fix_WinProjects' into develop/7
2023-12-11 Patrick van Kleef <[email protected]>
Fixed missing declare
2023-12-11 Mitko Iliev <[email protected]>
Fixed HTTP 101/204/304 responses MUST not return content
2023-12-11 Patrick van Kleef <[email protected]>
Fixed issue with double escaped 'path' decodes
2023-12-11 Mitko Iliev <[email protected]>
Fixed issue with TOP 1 on a cursor
Fixed issues with Default Graph IRI from table SYS_SPARQL_HOSTS (fixes #1086)
Added support to avoid redundant check for 401 handlers
Added support to enable run-time setting warnings on debug builds
2023-12-11 Mitko Iliev <[email protected]>
Fixed issue with windows specific printf format
Recent versions of the Windows compiler now support %llx format
2023-12-11 Patrick van Kleef <[email protected]>
Fixed issue with ssg_print_double_as_sql_atom and added ssg_print_float_as_sql_atom
2023-12-11 Mitko Iliev <[email protected]>
Fixed issue with select (select ... union ...) or similar expressions
Fixed issue with user aggregates
Fixed issue with uninitialized var
2023-12-06 Mitko Iliev <[email protected]>
Fixed sprintf format for windows (fixes #1203)
2023-12-01 Patrick van Kleef <[email protected]>
Merge branch 'feature/fuzzer-fixes' into develop/7
Added missing SPARQL_ADMIN user for DAV/LDP
2023-12-01 Mitko Iliev <[email protected]>
Added protection against accessing not compatible container
Added testsuite entries for recently fixed issues
2023-12-01 Patrick van Kleef <[email protected]>
Fixed issue with printf style functions not using explicit format string (fixes #1199)
2023-12-01 Mitko Iliev <[email protected]>
Fixed issue with with dfe true/false shortcuts (fixes #1196)
Fixed issue on cube/rollup with constant in select list (fixes #1195, #1197)
Fixed issue mixing numeric and int boxes in expression (fixes #1194, #1198)
Fixed issue when hash source is not available (fixes #1193)
Fixed issue with bad index op ref in table dft (fixes #1190, #1191)
Fixed issue with TOP not working when DISTINCT is used (fixes #1158)
2023-11-30 Mitko Iliev <[email protected]>
Fixed issue skipping sort node on outer as hash join may put right side at top
Merged from v8 size of dfe table & loop dfe check
2023-11-27 Mitko Iliev <[email protected]>
Fixed issue with turtle/n-triples media type legacy and recent spec. compatibility (fixes #1187)
2023-11-24 Mitko Iliev <[email protected]>
Fixed moved check for RDF view sync table
2023-11-24 Patrick van Kleef <[email protected]>
Fixed use DOUBLE_G_STAR_FMT instead of %lg for printing doubles
2023-11-24 Mitko Iliev <[email protected]>
Fixed issue with outer hash join with GROUP BY via hash source
Fixed error reporting on RDF_SYNC_TO_PHYSICAL
2023-11-23 Mitko Iliev <[email protected]>
Added debug check for numeric size
2023-11-23 Patrick van Kleef <[email protected]>
Merge branch 'feature/fuzzer-fixes' into develop/7
2023-11-23 Mitko Iliev <[email protected]>
Added testsuite entries for recently fixed issues
Fixed issue with outer hash build (fixes #1185)
2023-11-23 Mitko Iliev <[email protected]>
Fixed issue mixing vectored and non vectored ops (fixes #1184)
Only perform the dc ops when both left, right and result are vectors
2023-11-23 Mitko Iliev <[email protected]>
Fixed issue with scalar subq (fixes #1183)
2023-11-23 Mitko Iliev <[email protected]>
Fixed missing argument check to ORDER BY and GROUP BY (fixed #1182)
Only expressions, columns and positions can be used as argument.
2023-11-23 Patrick van Kleef <[email protected]>
Fixed error message on page
2023-11-22 Patrick van Kleef <[email protected]>
Fixed use DOUBLE_G_STAR_FMT instead of %lg for printing doubles
Note that %lg may refer to long double which on some machines is
bigger than a normal double to hold extra precision.
2023-11-22 Patrick van Kleef <[email protected]>
Fixed use %lf for scanning doubles
2023-11-22 Mitko Iliev <[email protected]>
Fixed issue with bad Accept header
2023-11-22 Patrick van Kleef <[email protected]>
Fixed use `schema:description` as alt for `rdfs:comment` (fixes #1186)
Although mentioned in the NEWS file, the actual patch was not committed
at the time.
2023-11-20 Mitko Iliev <[email protected]>
Added testsuite entries for recently fixed issues
2023-11-20 Mitko Iliev <[email protected]>
Fixed issue with chash (fixes #1179)
chash does not work on union where branche has const, use memhash instead
2023-11-20 Mitko Iliev <[email protected]>
Fixed do not reset target to any if source is vec dtp
Fixed issue with setting type before col assign function (fixes #1178)
Fixed get argument before place gets mangled when serializing ANY (fixes #1174)
Fixed issue with function inside control expression
2023-11-20 Mitko Iliev <[email protected]>
Fixed issue with missing cast on return type (fixes #1172)
The return type from searched case as well as control expression
cannot be predicted as it can be any type, so we have to cast
explicitly to column type.
2023-11-20 Mitko Iliev <[email protected]>
Fixed check constraint cannot use CONTAINS text predicate (fixes #1177)
Fixed show numeric type ssl as N'u'meric
2023-11-10 Mitko Iliev <[email protected]>
Fixed issue when ODS is not installed
DO NOT call ODS explicitly in server code, this and other should be made
as interfaces!
2023-11-10 Mitko Iliev <[email protected]>
Added support for Access-Control-Allow-Methods different than Allow, for AJAX CORS
2023-11-10 Patrick van Kleef <[email protected]>
Fixed issue with very long sparql queries
If we have a very long query in the textarea, the url will be larger
than 14000 chars. Reportedly most modern browsers seem to have a problem
with this when submitting using a GET method on the form.
Although we have a registry setting called 'sparql-ui-max-url' that can be
set as a maximum length for switching to a POST method on the form,
this is off by default.
This patch makes sure that such large queries will be automatically be
submitted using the POST method.
2023-11-10 Mitko Iliev <[email protected]>
Fixed issue with wrong datatype
2023-11-10 Patrick van Kleef <[email protected]>
Fixed missing end tag after merge (fixes #1171)
2023-11-09 Mitko Iliev <[email protected]>
Added support for GRAPH decorations in TriG (fixes #1169)
2023-11-08 Patrick van Kleef <[email protected]>