forked from groonga/groonga
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
10117 lines (6519 loc) · 348 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
2010-09-09 Kouhei Sutou <[email protected]>
* doc/ja/Makefile.am, doc/ja/source/index.txt, doc/ja/source/install.txt: add
install document.
* doc/ja/source/commands/select.txt, doc/ja/source/news.txt: add 1.0.2 entry.
2010-09-09 Daijiro MORI <[email protected]>
* examples/dictionary/html/index.html,
examples/dictionary/html/js/dictionary.js: Trimmed examples/dictionary
2010-09-09 Kouhei Sutou <[email protected]>
* test/unit/core/test-command-define-selector.c,
test/unit/core/test-command-select.c: follow _value isn't shown by default
change.
* test/unit/core/test-inspect.c, test/unit/story/test-taiyaki.c: follow
geopoint conversion logic change.
* test/unit/lib/grn-test-utils.c: fix a milliseconds -> dgree geo point
conversion logic.
* examples/dictionary/readme.txt: fix a typo.
2010-09-08 Daijiro MORI <[email protected]>
* examples/dictionary/readme.txt: Fixed a typo.
* examples/dictionary/ddl.grn, examples/dictionary/edict/edict2grn.rb,
examples/dictionary/edict/edict_import.sh,
examples/dictionary/eijiro/eijiro2grn.rb,
examples/dictionary/eijiro/eijiro_import.sh,
examples/dictionary/gene95/gene2grn.rb,
examples/dictionary/gene95/gene_import.sh,
examples/dictionary/html/css/dictionary.css,
examples/dictionary/html/index.html,
examples/dictionary/html/js/dictionary.js,
examples/dictionary/html/js/jquery-1.4.2.min.js,
examples/dictionary/init_db.sh, examples/dictionary/jmdict/jmdict.rb,
examples/dictionary/readme.txt: Added an example for loading various
dictionaries.
2010-09-08 Kouhei Sutou <[email protected]>
* doc/ja/source/tutorial/tutorial01.txt: add --localstatedir=/var for
suggested configure options.
* lib/db.c, test/unit/core/test-cast-basic.c, test/unit/core/test-inspect.c,
test/unit/fixtures/story/taiyaki/ddl.grn,
test/unit/fixtures/story/taiyaki/shops.grn, test/unit/lib/grn-test-utils.c,
test/unit/story/test-taiyaki.c: fix decimal geopoint parsing. #460
* doc/ja/source/commands/select.txt, lib/proc.c: remove _value from default
output_columns.
* doc/ja/source/commands/select.txt: add more missing ",".
* doc/ja/source/commands/select.txt: add missing ",".
2010-09-08 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Added sortby, output_columns, offset and limit
parameters to suggest command. Number of results and column names is added to
result of suggest command.
2010-09-07 Kouhei Sutou <[email protected]>
* test/unit/fixtures/story/taiyaki/Makefile.am: add missing data. Reported
by OBATA Akio. Thanks!!!
* test/unit/core/test-cast-basic.c: add tests for geo literal with ','
separator.
* apt/update-repository.sh: fix generated file permission.
2010-09-07 Daijiro MORI <[email protected]>
* doc/ja/source/execfile.txt, lib/proc.c, lib/proc.h, src/Makefile.am,
src/groonga.c: Renamed the name of an option of groonga command from
admin-html-path to document-root.
2010-09-06 Kouhei Sutou <[email protected]>
* ChangeLog, configure.ac: release 1.0.1
* debian/changelog, rpm/centos/groonga.spec.in, rpm/fedora/groonga.spec.in:
add 1.0.1 release entry.
* doc/ja/source/news.txt: add 1.0.1 release note.
* src/groonga.c, test/unit/command/Makefile.am,
test/unit/command/test-bom.rb: work with UTF-8 BOM input. #448
2010-09-04 Kouhei Sutou <[email protected]>
* test/unit/core/test-inspect.c: suppress overflow. Reported by OBATA Akio.
Thanks!!!
* configure.ac: use $(localstatedir) instead of /var for groonga log path.
Suggested by OBATA Akio. Thanks!!!
* lib/util.c: initialize variable. Reported by OBATA Akio. Thanks!!!
2010-09-03 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: uint32 -> int32 in cooccur_search().
2010-09-03 Kouhei Sutou <[email protected]>
* yum/build-rpm.sh: use built SRPM.
* rpm/centos/groonga.spec.in, rpm/fedora/groonga.spec.in: remove
no-optimization flag.
* yum/Makefile.am: fix a typo.
* rpm/centos/groonga.spec.in, rpm/fedora/groonga.spec.in,
yum/build-in-chroot.sh, yum/build-rpm.sh, yum/groonga-depended-packages:
support CentOS packages.
* data/init.d/redhat/groonga, rpm/fedora/groonga.spec.in: fix wrong options.
* data/init.d/redhat/groonga: fix daemon arguments.
* rpm/fedora/groonga.spec.in: support init script.
* configure.ac, data/init.d/redhat/Makefile.am,
data/init.d/redhat/sysconfig/Makefile.am: install init sciripts into
/etc/groonga/.
* configure.ac, data/Makefile.am, data/init.d/Makefile.am,
data/init.d/redhat/Makefile.am, data/init.d/redhat/groonga,
data/init.d/redhat/sysconfig/Makefile.am,
data/init.d/redhat/sysconfig/groonga: add init script for RedHat.
* .gitignore, yum/build-repository-rpm.sh: fix repository path.
2010-09-02 Kouhei Sutou <[email protected]>
* Makefile.am, configure.ac, rpm/Makefile.am, rpm/centos/Makefile.am,
rpm/fedora/Makefile.am, rpm/fedora/groonga.spec.in: split Fedora packages.
* resource/admin_html/js/jquery.json-2.2.min.js: add missing jquery.json.
* apt/Makefile.am: cleanup.
* Makefile.am: put rpm/*/*.spec.in files into distributed files.
* .gitignore, Makefile.am, configure.ac, groonga.spec.in,
rpm/centos/groonga.spec.in, rpm/fedora/groonga.spec.in, yum/Makefile.am,
yum/build-in-chroot.sh, yum/build-repository-rpm.sh, yum/build-rpm.sh,
yum/gpg-public-key.sh, yum/gpg-uid.sh, yum/groonga-depended-packages,
yum/groonga-repository.spec, yum/sign-rpm.sh, yum/update-repository.sh: add
yum related files.
* groonga.spec.in: rebase spec.in on Daiki Ueno version.
https://bugzilla.redhat.com/show_bug.cgi?id=626666
* resource/Makefile.am: add missing json JQuery plugin.
2010-08-30 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Enhanced suggest command.
* modules/suggest/suggest.c: cooccur_search receives tid.
2010-08-29 Kouhei Sutou <[email protected]>
* ChangeLog: release 1.0.0
* debian/changelog: add 1.0.0-1 entry.
* configure.ac: 0.7.7 -> 1.0.0.
* doc/ja/source/commands/suggest.txt, doc/ja/source/news.txt: add 1.0.0
entry.
2010-08-27 Kouhei Sutou <[email protected]>
* test/unit/core/test-table-patricia-trie-cursor.c: add missing declarations.
2010-08-28 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Enhanced suggest command.
2010-08-27 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: suggest command returns void result when invoked
with empty string.
* modules/suggest/suggest.c: suggest command doesn't return original string
anymore.
* resource/Makefile.am: Fixed missing loading.gif in Makefile.am
2010-08-27 Yosuke Sekikawa <[email protected]>
* resource/admin_html/images/loading.gif: add loading.gif
2010-08-27 Daijiro MORI <[email protected]>
* lib/proc.c: delete command returns false when no corresponding record
found.
* lib/com.c, lib/com.h: Added const qualifier to the body argument of
grn_com_send().
* doc/ja/source/commands/suggest.txt, modules/suggest/suggest.c: suggest
command returns hash
* lib/db.c: Fixed missing type check.
* modules/suggest/suggest.c: Enhanced command_suggest
2010-08-27 Kouhei Sutou <[email protected]>
* lib/proc.c, test/unit/core/test-command-delete.c: delete command: support
record deletion with no text key table. Reported by Itagaki Takahiro.
Thanks!!!
2010-08-26 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* doc/ja/source/commands/suggest.txt, modules/suggest/suggest.c: Now command
suggest supports types parameter.
* doc/ja/source/commands/suggest.txt: Added suggest command document.
2010-08-26 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Added suggest_sub().
2010-08-26 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* modules/suggest/suggest.c: Added prefix search on suggest completion.
* modules/suggest/suggest.c: Normalized query with RK suggest.
2010-08-26 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Enhanced func_suggest_preparer().
2010-08-25 Kouhei Sutou <[email protected]>
* test/unit/core/test-command-select.c: add a test for equal query with
index.
* apt/build-in-chroot.sh: use jp.archive.ubuntu.com if available.
2010-08-25 Daijiro MORI <[email protected]>
* lib/db.c, lib/expr.c: Fixed a bug in grn_table_select() causing
GRN_OP_EQUAL to not work correctly.
2010-08-25 Kouhei Sutou <[email protected]>
* lib/ctx.c, test/unit/core/Makefile.am, test/unit/core/test-function.c:
don't call not command proc as command. #431
* autogen.sh: fix autotools execute order.
2010-08-25 Daijiro MORI <[email protected]>
* lib/store.c: Fixed missing return in grn_ja_put_raw().
2010-08-25 Kouhei Sutou <[email protected]>
* ChangeLog, configure.ac: release 0.7.7
* debian/changelog: add 0.7.7 entry.
* doc/ja/source/commands/delete.txt,
doc/ja/source/functions/edit_distance.txt,
doc/ja/source/functions/geo_in_rectangle.txt, doc/ja/source/news.txt: add
0.7.7 release note.
* doc/ja/source/index.txt: don't include news to documentation.
2010-07-20 Kouhei Sutou <[email protected]>
* lib/expr.c: support prefix search with query syntax.
2010-08-25 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Removed unnecessary error handling in suggest.
2010-08-25 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* modules/suggest/suggest.c: Improved error handling on suggest.c.
2010-08-25 Daijiro MORI <[email protected]>
* groonga.h, lib/proc.c, lib/ql.c, lib/store.c, lib/util.c:
GRN_OBJ_RING_BUFFER appeared.
* modules/suggest/suggest.c: suggest_preparer() updates item.freq and
sequence.events.
2010-08-25 Kouhei Sutou <[email protected]>
* apt/Makefile.am: add download target.
* debian/changelog, debian/control, debian/groonga-munin-plugin.conf,
debian/groonga-munin-plugins.postinst, debian/groonga-munin-plugins.postrm,
debian/groonga.default, debian/groonga.init, debian/groonga.logrotate,
debian/groonga.postinst, debian/groonga.postrm, debian/rules: split munin
package.
* data/Makefile.am: fix install place.
* data/Makefile.am: distribute groonga.conf.
* data/Makefile.am, data/groonga.conf: add default groonga.conf.
* apt/Makefile.am, apt/update-repository.sh: make project name customizable.
2010-08-24 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* modules/suggest/suggest.c: Supported edit_distance on suggest command.
2010-08-24 Kouhei Sutou <[email protected]>
* test/unit/core/test-function-edit-distance.c: fix a typo.
* test/unit/core/test-function-edit-distance.c: add tests for edit_distance
with Japanese.
2010-08-24 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Renamed callback to suggest_preparer.
* modules/suggest/suggest.c: Added func_callback().
2010-08-24 Kouhei Sutou <[email protected]>
* .gitignore: ignore generated files.
* apt/debian/generate-lenny.conf, apt/debian/generate-unstable.conf,
apt/debian/release-lenny.conf, apt/debian/release-unstable.conf,
apt/ubuntu/generate-hardy.conf, apt/ubuntu/generate-lucid.conf,
apt/ubuntu/release-hardy.conf, apt/ubuntu/release-lucid.conf: remove *.conf.
* apt/update-repository.sh: auto-generate .conf files.
* doc/ja/Makefile.am: add edit_distance document.
* test/unit/core/Makefile.am, test/unit/core/test-function-edit-distance.c:
add tests for edit distance.
2010-08-24 Daijiro MORI <[email protected]>
* modules/suggest/suggest.c: Fixed wrong function type.
* .gitignore: Added some stuffs to .gitignore
* doc/ja/source/functions/edit_distance.txt: Added edit_distance.txt
2010-08-24 Kouhei Sutou <[email protected]>
* configure.ac, doc/ja/Makefile.am: make distriubted document installable.
* Makefile.am: add missing $(srcdir)/.
* modules/tokenizers/mecab.c: ignore encoding case.
* modules/tokenizers/mecab.c: accept 'utf8' as MeCab UTF-8 encoding string.
2010-08-24 Daijiro MORI <[email protected]>
* lib/ii.c, lib/token.c: grn_token_next() override status to
'grn_token_not_found' only when it's not 'grn_token_done'.
* modules/suggest/suggest.c: set similarity_threshold large enough.
* lib/ii.c: Fixed a bug in grn_ii_similar_search() which had caused segv.
2010-08-23 Daijiro MORI <[email protected]>
* groonga.h, lib/ctx.c, lib/db.c, lib/proc.c, lib/ql.h: Added each parameter
to load command.
2010-08-23 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* lib/ii.c: Removed unused grn_p().
* lib/ii.c, modules/suggest/suggest.c: Added word correction for suggest
function.
2010-08-23 Kouhei Sutou <[email protected]>
* apt/build-in-chroot.sh, apt/sign-repository.sh, apt/update-repository.sh:
support squeeze.
* apt/Makefile.am: create a package for squeeze.
* lib/db.c, test/unit/core/test-command-delete.c,
test/unit/lib/grn-assertions.h, test/unit/lib/grn-test-shortcut.h: report
error on failing to delete a record. #428
2010-08-22 Kouhei Sutou <[email protected]>
* lib/geo.c: fix geo_in_rectangle() end condition
* lib/geo.c: fix search leak in geo_in_rectangle.
* doc/ja/source/functions/geo_in_rectangle.txt: fix geo_in_rectangle()
example.
* configure.ac: revert '"$ac_cv_use_cutter" != "no" -> "$ac_cv_use_cutter" =
"yes"' change.
* doc/ja/Makefile.am: SPHINXBUILD -> SPHINX_BUILD.
2010-08-22 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* lib/db.c: Fixed inspect for tables with no column.
2010-08-21 Kouhei Sutou <[email protected]>
* configure.ac, doc/ja/Makefile.am: check sphinx version.
* debian/rules: add missing modules.
* apt/Makefile.am: don't delete existence files.
* debian/changelog, debian/control, debian/rules: update debian related
files.
* .gitignore: ignore an auto-generated file.
2010-08-20 Kouhei Sutou <[email protected]>
* doc/ja/Makefile.am: don't rebuild html and man on distribution.
* doc/ja/Makefile.am: also install source files.
* .gitignore, configure.ac, doc/ja/Makefile.am, doc/ja/build/Makefile.am: fix
document build dependencies.
2010-08-20 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* modules/suggest/suggest.c: Swap sequences of conditions on suggest func.
2010-08-20 Kouhei Sutou <[email protected]>
* doc/ja/Makefile.am, doc/ja/build/Makefile.am, doc/ja/source/index.txt,
doc/ja/source/news.txt: add a release note for 0.7.6.
* lib/db.h: add GRN_API to grn_proc_get_var_by_offset().
* doc/ja/build/Makefile.am: add missing files.
* .gitignore, doc/ja/build/Makefile.am: install groonga(1).
* .gitignore, Makefile.am, configure.ac, doc/Makefile.am, doc/ja/Makefile,
doc/ja/Makefile.am, doc/ja/build/Makefile.am: make generated HTML
installable.
2010-08-20 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* doc/ja/Makefile, doc/ja/_static/basic.css, doc/ja/_static/default.css,
doc/ja/_static/doctools.js, doc/ja/_static/file.png,
doc/ja/_static/jquery.js, doc/ja/_static/minus.png, doc/ja/_static/plus.png,
doc/ja/_static/pygments.css, doc/ja/_static/searchtools.js,
doc/ja/characteristic.html, doc/ja/commands.html, doc/ja/commands/add.html,
doc/ja/commands/cache_limit.html, doc/ja/commands/check.html,
doc/ja/commands/clearlock.html, doc/ja/commands/column_create.html,
doc/ja/commands/column_list.html, doc/ja/commands/column_remove.html,
doc/ja/commands/define_selector.html, doc/ja/commands/defrag.html,
doc/ja/commands/delete.html, doc/ja/commands/dump.html,
doc/ja/commands/get.html, doc/ja/commands/load.html,
doc/ja/commands/log_level.html, doc/ja/commands/log_put.html,
doc/ja/commands/log_reopen.html, doc/ja/commands/quit.html,
doc/ja/commands/select.html, doc/ja/commands/set.html,
doc/ja/commands/shutdown.html, doc/ja/commands/status.html,
doc/ja/commands/table_create.html, doc/ja/commands/table_list.html,
doc/ja/commands/table_remove.html, doc/ja/commands/view_add.html,
doc/ja/developer.html, doc/ja/developer/com.html,
doc/ja/developer/document.html, doc/ja/developer/query.html,
doc/ja/developer/test.html, doc/ja/execfile.html, doc/ja/expr.html,
doc/ja/functions.html, doc/ja/functions/geo_distance.html,
doc/ja/functions/geo_in_circle.html, doc/ja/functions/geo_in_rectangle.html,
doc/ja/functions/now.html, doc/ja/functions/rand.html, doc/ja/genindex.html,
doc/ja/grnslap.html, doc/ja/grntest.html, doc/ja/http.html,
doc/ja/index.html, doc/ja/process.html, doc/ja/pseudo_column.html,
doc/ja/reference.html, doc/ja/search.html, doc/ja/searchindex.js,
doc/ja/source/conf.py, doc/ja/tutorial.html, doc/ja/tutorial/tutorial01.html,
doc/ja/tutorial/tutorial02.html, doc/ja/tutorial/tutorial03.html,
doc/ja/tutorial/tutorial04.html, doc/ja/tutorial/tutorial05.html,
doc/ja/tutorial/tutorial06.html, doc/ja/tutorial/tutorial07.html,
doc/ja/tutorial/tutorial08.html, doc/ja/tutorial/tutorial09.html,
doc/ja/tutorial/tutorial10.html, doc/ja/type.html: Added make man and changed
html output directory.
2010-08-20 Daijiro MORI <[email protected]>
* configure.ac, modules/Makefile.am, modules/functions/Makefile.am,
modules/functions/cast.c, modules/functions/suggest.c,
modules/suggest/Makefile.am, modules/suggest/suggest.c: Moved suggest.so to
suggest directory.
2010-08-20 Kouhei Sutou <[email protected]>
* Makefile.am, configure.ac, resource/Makefile.am: install resource by
resource/Makefile.am instead of custom target.
* configure.ac, test/unit/Makefile.am: do nothing with 'make check' on unit
test unavailable environment.
2010-08-19 Daijiro MORI <[email protected]>
* lib/proc.c: Added edit_distance() function.
2010-08-19 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac, doc/ja/characteristic.html, doc/ja/commands.html,
doc/ja/commands/cache_limit.html, doc/ja/commands/check.html,
doc/ja/commands/clearlock.html, doc/ja/commands/column_create.html,
doc/ja/commands/column_list.html, doc/ja/commands/column_remove.html,
doc/ja/commands/define_selector.html, doc/ja/commands/defrag.html,
doc/ja/commands/delete.html, doc/ja/commands/dump.html,
doc/ja/commands/load.html, doc/ja/commands/log_level.html,
doc/ja/commands/log_put.html, doc/ja/commands/log_reopen.html,
doc/ja/commands/quit.html, doc/ja/commands/select.html,
doc/ja/commands/shutdown.html, doc/ja/commands/status.html,
doc/ja/commands/table_create.html, doc/ja/commands/table_list.html,
doc/ja/commands/table_remove.html, doc/ja/commands/view_add.html,
doc/ja/developer.html, doc/ja/developer/com.html,
doc/ja/developer/document.html, doc/ja/developer/query.html,
doc/ja/developer/test.html, doc/ja/execfile.html, doc/ja/expr.html,
doc/ja/functions.html, doc/ja/functions/geo_distance.html,
doc/ja/functions/geo_in_circle.html, doc/ja/functions/geo_in_rectangle.html,
doc/ja/functions/now.html, doc/ja/functions/rand.html, doc/ja/genindex.html,
doc/ja/grnslap.html, doc/ja/grntest.html, doc/ja/http.html,
doc/ja/index.html, doc/ja/process.html, doc/ja/pseudo_column.html,
doc/ja/reference.html, doc/ja/search.html, doc/ja/searchindex.js,
doc/ja/tutorial.html, doc/ja/tutorial/tutorial01.html,
doc/ja/tutorial/tutorial02.html, doc/ja/tutorial/tutorial03.html,
doc/ja/tutorial/tutorial04.html, doc/ja/tutorial/tutorial05.html,
doc/ja/tutorial/tutorial06.html, doc/ja/tutorial/tutorial07.html,
doc/ja/tutorial/tutorial08.html, doc/ja/tutorial/tutorial09.html,
doc/ja/tutorial/tutorial10.html, doc/ja/type.html: release 0.7.6
2010-08-19 Daijiro MORI <[email protected]>
* modules/functions/suggest.c: Fixed missing grn_table_get_key() in suggest
proc.
2010-08-19 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* modules/functions/Makefile.am, modules/functions/suggest.c: Added suggest
function module.
2010-08-19 Daijiro MORI <[email protected]>
* lib/store.c: grn_ja supports GRN_OBJ_WITH_BUFFER.
2010-08-19 Kouhei Sutou <[email protected]>
* lib/geo.c: expand sub mesh area.
* test/unit/core/test-table-sort-geo.c: fix function name.
* lib/geo.c: fix geo search and sort with index.
* test/unit/story/test-taiyaki.c: show also location.
* test/unit/story/test-taiyaki.c: add missing declaration.
2010-08-19 Daijiro MORI <[email protected]>
* lib/db.c, lib/store.c, lib/store.h: Added grn_ja_get_value()
2010-08-18 Daijiro MORI <[email protected]>
* lib/db.c: Fixed a memory leak bug and enhanced error handling in
build_index().
* lib/db.c: build_index() supports index for _key.
2010-08-18 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* configure.ac: Added new taiyaki directory to confiure.ac.
* configure.ac: Removed taiyaki directory from configure.ac.
2010-08-13 Kouhei Sutou <[email protected]>
* lib/expr.c: support 'null' literal in grn-expression.
2010-08-16 Kouhei Sutou <[email protected]>
* lib/db.c, test/unit/core/Makefile.am, test/unit/core/test-command-dump.c,
test/unit/core/test-command-select.c: support integer key table vector load.
2010-08-18 Kouhei Sutou <[email protected]>
* test/unit/core/test-table-patricia-trie-cursor.c: add tests for no match
case.
* test/unit/core/test-table-patricia-trie-cursor.c: add tests for
GRN_CURSOR_RK with offset and limit.
* test/unit/core/test-table-patricia-trie-cursor.c: add more tests for xtsu
and lyu.
* test/unit/core/test-table-patricia-trie-cursor.c: remove needless indent.
* test/unit/core/test-table-patricia-trie-cursor.c: don't use
GRN_CURSOR_ASCENDING.
* test/unit/core/test-table-patricia-trie-cursor.c: don't care GRN_CURSOR_RK
order.
2010-08-18 Daijiro MORI <[email protected]>
* lib/pat.c: Fixed missing static.
* groonga.h: Added comment about GRN_CURSOR_RK.
2010-08-17 Daijiro MORI <[email protected]>
* lib/pat.c: support "ltu", "ltsu" in set_cursor_rk().
2010-08-17 Kouhei Sutou <[email protected]>
* test/unit/core/test-table-patricia-trie-cursor.c: cosmetic.
* test/unit/core/test-table-patricia-trie-cursor.c: show input in label.
* test/unit/core/test-table-patricia-trie-cursor.c: fix wrong expected
values.
2010-08-17 Daijiro MORI <[email protected]>
* lib/pat.c: Fixed a bug in sub_search() cause wrong result when
GRN_CURSOR_RK assigned.
2010-08-17 Kouhei Sutou <[email protected]>
* test/unit/core/test-table-patricia-trie-cursor.c: add more tests for
GRN_CURSOR_RK.
* lib/pat.c: cosmetic.
* test/unit/core/test-table-patricia-trie-cursor.c: remove a needless
function.
* test/unit/core/test-table-patricia-trie-cursor.c: remove a needless
function.
* test/unit/core/test-table-patricia-trie-cursor.c: add a test for prefix rk.
2010-08-17 Daijiro MORI <[email protected]>
* lib/pat.c: Added search_push() to pat.c
2010-08-16 Daijiro MORI <[email protected]>
* groonga.h, lib/pat.c: Added sub_search() to pat.c
2010-08-16 Kouhei Sutou <[email protected]>
* test/unit/http/test-http-schema.rb: fix charcter case.
* test/unit/http/test-http-schema.rb: remove compress_none.
* lib/proc.c, test/unit/core/Makefile.am,
test/unit/core/test-command-define-selector.c: re-enable define_selector.
* test/unit/http/test-http-select-drilldown.rb: remove [..] from [true] to
follow groonga changes.
* test/unit/gqtp/test-restore.rb: use name such as TABLE_HASH_KEY instead of
number such as 0.
2010-08-16 Daijiro MORI <[email protected]>
* lib/pat.c: Added rk_conv() to pat.c
2010-08-16 Kouhei Sutou <[email protected]>
* test/unit/run-test.rb: update test-unit version and use test-unit-notify.
2010-08-13 Kouhei Sutou <[email protected]>
* test/unit/core/test-table-patricia-trie-cursor.c: fix parameter and
expected data.
* test/unit/core/test-table-patricia-trie-cursor.c: fix expected data.
* groonga.h, lib/db.c, test/unit/core/test-table-patricia-trie-cursor.c:
don't accept negative offset and limit with GRN_CURSOR_PREFIX. #377
* test/unit/core/test-command-select-prefix-search.c: fix syntax in --filter.
* test/unit/core/test-command-select.c: add a test boolean literal in filter.
#402
* test/unit/core/test-accessor.c: add tests for grn_column_name() with
accessor.
* lib/db.c, test/unit/core/Makefile.am: grn_column_name() supports accessor.
2010-08-12 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* doc/ja/searchindex.js, doc/ja/source/developer/query.txt: Fixed a too short
underline on documents.
* doc/ja/commands/define_selector.html, doc/ja/commands/load.html,
doc/ja/commands/log_level.html, doc/ja/commands/select.html,
doc/ja/http.html, doc/ja/searchindex.js,
doc/ja/source/commands/define_selector.txt, doc/ja/source/commands/load.txt,
doc/ja/source/commands/log_level.txt, doc/ja/source/commands/select.txt,
doc/ja/source/commands_not_implemented/add.txt,
doc/ja/source/commands_not_implemented/get.txt,
doc/ja/source/commands_not_implemented/set.txt, doc/ja/source/http.txt: Added
output_type description on documents.
2010-08-12 Kouhei Sutou <[email protected]>
* lib/geo.c, test/unit/story/test-taiyaki.c: work for long latitude
rectangle.
* lib/expr.c, lib/geo.c, lib/geo.h, test/unit/story/test-taiyaki.c: support
geo_in_rectangle() with index.
* lib/proc.c: remove a garbage.
* configure.ac, test/unit/story/Makefile.am,
test/unit/story/taiyaki/Makefile.am, test/unit/story/taiyaki/test-geo.c,
test/unit/story/test-taiyaki.c: test/unit/story/taiyaki/test-geo.c ->
test/unit/story/test-taiyaki.c.
* lib/proc.c, test/unit/story/taiyaki/test-geo.c: use grn_geo_in_rectangle().
2010-08-11 Kouhei Sutou <[email protected]>
* lib/expr.c, lib/geo.c, lib/geo.h: grn_geo_search() ->
grn_geo_search_in_circle().
* lib/geo.c: remove needless parentheses.
* lib/geo.c: remove duplicated codes.
* lib/geo.c, lib/geo.h: fix typos.
* lib/geo.c, lib/geo.h: fix geo search with index drops needed points.
2010-08-10 Yutaro Shimamura <[email protected]>
* lib/db.c: Exist datas load to index.
2010-08-10 Kouhei Sutou <[email protected]>
* lib/geo.c: split mesh detection logic.
* lib/geo.c: geo_in_rectangle() follows document behavior. #414
2010-08-09 Kouhei Sutou <[email protected]>
* lib/groonga_in.h: _XOPEN_SOURCE 500 -> 520 for EAI_* on NetBSD. Suggested
by OBATA Akio. Thanks!!!
* lib/geo.c: grn_table_sort_geo_ -> grn_geo_table_sort_.
* lib/geo.c: remove needless macros.
* lib/db.c, lib/geo.c, lib/geo.h: move grn_table_sort_geo() to geo.c.
* test/unit/core/test-command-column-list.c, test/unit/core/test-dump.c:
follow COMPRESS_NONE remove change.
* configure.ac, src/groonga.c: use sysctl() for getting N CPU cores as
fallback.
* configure.ac: remove a needless '='. Patch by OBATA Akio. Thanks!!!
2010-08-07 Daijiro MORI <[email protected]>
* lib/proc.c: Stopped printing COMPRESS_NONE in proc_dump().
2010-08-05 Daijiro MORI <[email protected]>
* doc/ja/developer/query.html, doc/ja/searchindex.js,
doc/ja/source/developer/query.txt: Renamed match() to contain()
* doc/ja/developer/query.html: Added query.html
* doc/ja/genindex.html, doc/ja/searchindex.js,
doc/ja/source/developer/query.txt: update html
2010-08-05 Kouhei Sutou <[email protected]>
* Makefile.am: use @am__include@ instead of $(am__include). #418
* lib/util.c, test/unit/core/test-inspect.c: inspect supports proc.
* lib/expr.c, lib/geo.c, lib/geo.h, lib/proc.c: move grn_geo_search() to
geo.c from proc.c.
* lib/proc.c: use grn_geo_distance2() and grn_geo_distance3().
* test/unit/core/Makefile.am,
test/unit/core/test-table-patricia-trie-cursor.c,
test/unit/core/test-table-patricia-trie-sort.c,
test/unit/core/test-table-sort-geo.c: rename to correct name.
2010-08-05 Daijiro MORI <[email protected]>
* doc/ja/commands/define_selector.html, doc/ja/commands/delete.html,
doc/ja/commands/load.html, doc/ja/commands/select.html,
doc/ja/developer.html, doc/ja/developer/document.html,
doc/ja/developer/test.html, doc/ja/expr.html, doc/ja/functions.html,
doc/ja/functions/geo_distance.html, doc/ja/functions/geo_in_circle.html,
doc/ja/functions/geo_in_rectangle.html, doc/ja/functions/now.html,
doc/ja/functions/rand.html, doc/ja/genindex.html, doc/ja/http.html,
doc/ja/index.html, doc/ja/pseudo_column.html, doc/ja/reference.html,
doc/ja/searchindex.js: Updated html documents.
2010-08-05 Kouhei Sutou <[email protected]>
* test/unit/fixtures/story/taiyaki/ddl.grn,
test/unit/story/taiyaki/test-geo.c: add a test for sorting with index.
* lib/db.c: don't pass needless variables.
* lib/db.c: use grn_geo_distance_raw() for computing distance.
* lib/geo.c, lib/geo.h: add low level API for geo.
* lib/geo.h: add missing parentheses.
2010-08-04 Kouhei Sutou <[email protected]>
* lib/db.c: fix sub mesh selection on border case.
2010-08-03 Kouhei Sutou <[email protected]>
* lib/db.c: work geo search with index again.
2010-07-28 Kouhei Sutou <[email protected]>
* lib/db.c: search also missing small meshes.
* lib/db.c: improve sort accuracy with geo index. This change complements
sort target points detected by near cursor with prefix cursors for arround
mesh.
2010-08-05 Daijiro MORI <[email protected]>
* doc/ja/source/developer/query.txt: Added more example.
* doc/ja/source/developer/query.txt: Added explanation of each function in
query.txt.
2010-08-05 Kouhei Sutou <[email protected]>
* test/unit/story/taiyaki/test-geo.c: use also geo_distance2() and
geo_distance3().
* lib/proc.c: use grn_geo_distance().
* lib/proc.c: use grn_geo_in_circle().
* lib/geo.c: revert grn_geo_in_rectangle() implementation change. See #414.
After reverting this, the behavior isn't different from document.
2010-08-05 Daijiro MORI <[email protected]>
* doc/ja/source/expr.txt: Touched in some detail in expr.txt.
2010-08-05 Kouhei Sutou <[email protected]>
* lib/geo.c: remove a needless space.
* lib/geo.c, lib/geo.h: add GRN_GEO_POINT_VALUE_RADIUS() and use it.
2010-08-05 Daijiro MORI <[email protected]>
* doc/ja/source/commands/delete.txt, doc/ja/source/commands/load.txt,
doc/ja/source/commands/select.txt,
doc/ja/source/commands_not_implemented/add.txt,
doc/ja/source/commands_not_implemented/get.txt,
doc/ja/source/commands_not_implemented/set.txt,
doc/ja/source/developer/query.txt, doc/ja/source/expr.txt,
doc/ja/source/functions/geo_distance.txt,
doc/ja/source/functions/geo_in_circle.txt,
doc/ja/source/functions/geo_in_rectangle.txt,
doc/ja/source/functions/now.txt, doc/ja/source/functions/rand.txt,
doc/ja/source/http.txt: Updated documents.
2010-08-05 Kouhei Sutou <[email protected]>
* lib/geo.c, lib/geo.h: add GRN_ prefix to macros.
* test/unit/core/test-geo.c: add missing test file.
2010-08-04 Daijiro MORI <[email protected]>
* doc/ja/source/developer/query.txt: Added examples to query.txt.
* doc/ja/source/developer/query.txt: Added query.txt.
2010-08-04 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* doc/ja/commands/defrag.html: Added html document for command defrag.
2010-08-04 Kouhei Sutou <[email protected]>
* lib/Makefile.am, lib/geo.c, lib/geo.h, test/unit/core/Makefile.am,
test/unit/core/test-table-patricia-trie-cursor.c,
test/unit/lib/grn-test-utils.h: split geo related functions to geo.[ch].
* lib/util.c, lib/util.h: add grn_p_geo_point().
* src/groonga.c, test/unit/http/test-http-select-basic.rb: support empty
vector transformation on XML output.
2010-08-03 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* groonga.h: Changed API document for GRN_CURSOR_PREFIX flag.
2010-08-03 Kouhei Sutou <[email protected]>
* src/groonga.c, test/unit/http/test-http-select-basic.rb,
test/unit/http/test-http-select-drilldown.rb: support vector in XML output.
2010-08-03 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* test/unit/core/test-command-select.c: Added tests for --filter
true/false/null.
2010-08-03 Kouhei Sutou <[email protected]>
* lib/groonga_in.h, lib/pat.c, lib/util.c, test/unit/core/test-inspect.c,
test/unit/core/test-table-patricia-trie-cursor.c: show geo point encoded byte
string in inspection.
2010-08-02 Kouhei Sutou <[email protected]>
* test/unit/core/test-table-patricia-trie-cursor.c: add a test for patricia
trie prefix cursor with border different bit.
2010-08-02 Daijiro MORI <[email protected]>
* lib/expr.c: support boolean value!
* lib/expr.c: Fixed wrong length count get_identifier().
* lib/pat.c: grn_pat_cursor_open() ignores GRN_CURSOR_PREFIX flag value when
both min_size and max_size are 0.
* lib/pat.c: Fixed a bug cause grn_pat_cursor_open() returns wrong result.
2010-08-02 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* doc/issues/html/blue-check.png, doc/issues/html/green-bar.png,
doc/issues/html/green-check.png,
...e-072a87e92a531f903d1c8c750ae487e857229311.html,
...e-0813445b4e7e031705443c65de4e56490cfb5f68.html,
...e-0a2d1af6cb802368d00cf11bdbb32d48088236d5.html,
...e-0f43b98394b1b842bd693d4bb780d7ea840dc937.html,
...e-12743ec6cb50faa98ba506825875a65cd4a5114b.html,
...e-1cf831130aed9217f3dfdcab46991f86b0ec7dd0.html,
...e-20d25689c0002e77f1882de7292bce7f3eb3f6a6.html,
...e-2df85342183b3ce6cb20f1d819e4bfb42d3dae01.html,
...e-35fb457d0882c0fa9c435907ee61db198ceef775.html,
...e-3b21e4f8cd86799c1414bab1f1e6ef74c010a724.html,
...e-3b74839bacab741757a7b1ab86c0bc91b69b8da2.html,
...e-40ba77e1ab1d76f669ec8e158e04e97d6184d8e9.html,
...e-41c02e541788d975e77e717e111db5305a8c3dd1.html,
...e-434086e6e9e2d2a1f13020ebfbb8fd52e8d4238f.html,
...e-44a8e2ec39e44e46fbb0be2e73b1250f7b21cc77.html,
...e-46d1cf02cf0906b13fb978ae4782525b286c1786.html,
...e-49ac44028aa53a91f58fd32ceba4250f770a137a.html,
...e-573fb49da556afd28ef0488c08e63d47a810b8df.html,
...e-5b85a190c07b49dc41d6f89b6ea74c5fe337747c.html,
...e-5bbdf2428fdeeaaec9229211204ea89775eef83b.html,
...e-66f39e8d340b7eebeac21833091c11f2fda90e37.html,
...e-674b1e80bd19e722e2ad0043a92604578c03d4f1.html,
...e-690c05001ca0607d16d910a9be30aeb3799a402b.html,
...e-6aadc729f0e5ae5bd8605c0fb2895530e6d29ef7.html,
...e-6be248a7a70304b17da9bbcd5a9dc164c5bb03df.html,
...e-77ceadc4728c4172a84c260a338bd69cd9023fce.html,
...e-78e6001e7b439198e24824fc162457b4d16cc78e.html,
...e-7c318d952c773d59dd94ab050011b73ba5ff4976.html,
...e-812e55ebc7b56fff62b27251840b235407e33a00.html,
...e-838fcc87fc531198e38d15ffa19e4e129f974501.html,
...e-8c369d9d08c51b104415897fe699aae5e84e88db.html,
...e-90c72b2ccac2d1554ef2f193a543df5faa802e98.html,
...e-917cb191e0a5a43718496e25d80708cb1b47b9ba.html,
...e-95c0d618d8525e5754c053cbf7ff87246a6eb61d.html,
...e-9821dba0218d9bf587eda9d38cbceb94130e3fb1.html,
...e-984c333ac497a39f79ef9349ba086c9a4ac88f24.html,
...e-99853725c11f5af0855fe4738b87ead3bcacacef.html,
...e-9ed7ab3fc422ef7222cc69e34faa409e7e74c6b9.html,
...e-a0c6017a26ab4aec78c9125591fc32637eb85065.html,
...e-a4d0fff53122fd0a48c91db4379a50b29ad6a55f.html,