forked from groonga/groonga
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1241 lines (737 loc) · 36.8 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
2009-06-04 mori <[email protected]>
* groonga.h, lib/ctx.c, lib/db.c, lib/db.h, test/unit/core/test-expr.c: Added
grn_expr.
2009-06-02 mori <[email protected]>
* lib/db.c, lib/db.h, test/unit/core/test-expr.c: Added grn_op.
2009-05-29 mori <[email protected]>
* lib/ctx.c, lib/db.c, lib/hash.c, lib/pat.c, lib/str.c: Added parameter
check to grn_hash_add() and grn_pat_add().
* lib/ctx.c, lib/db.c, lib/db.h, lib/hash.c, lib/pat.c, lib/query.c,
test/unit/core/test-expr.c: Fixed a problem in grn_table_create(), flags
value was not saved correctly.
2009-05-28 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac: release 0.0.7
2009-05-28 mori <[email protected]>
* lib/db.c, test/unit/core/test-expr.c: Set error info in grn_table_open().
2009-05-27 mori <[email protected]>
* src/grnslap.c: Fixed a typo..
* src/grnslap.c: Avoid division by zero...
* src/grnslap.c, test/unit/core/test-expr.c: Added -t (max throughput) option
to grnslap.
* lib/db.c, test/unit/core/test-expr.c: Fixed a memory leak bug in
grn_expr_close().
* groonga.h, lib/db.c, test/unit/core/test-expr.c: Fixed a bug in
grn_expr_open().
2009-05-26 mori <[email protected]>
* lib/query.c: Fixed a bug in grn_query_search() causes segv.
2009-05-26 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac: release 0.0.6
2009-05-26 mori <[email protected]>
* lib/db.c, lib/db.h: Added grn_expr_compile().
* lib/db.c, lib/token.c: Lower range of grn_db ids (1 to 255) are reserved by
sysytem.
2009-05-25 mori <[email protected]>
* lib/query.c: Support 'r' argument for grn_query_search().
* lib/token.c: Register "<token:mecab>" to db, even if mecab is disabled (for
compatibility).
2009-05-25 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* configure.ac, lib/groonga_in.h, lib/io.h: Define
GRN_FUTEX_WAIT/GRN_FUTEX_WAKE with futex.
2009-05-25 mori <[email protected]>
* lib/db.c: Reduced malloc call from grn_accessor_get_value().
2009-05-22 mori <[email protected]>
* lib/db.c: Fixed a bug in grn_obj_graft() cause memory leak.
* lib/ql.c, lib/ql.h, lib/scm.c: Put gc in ha_table().
* groonga.h: Fixed '?: have different type' problem in GRN_BULK_REWIND().
* examples/index.c, examples/kv.c, groonga.h, lib/com.c, lib/ctx.c,
lib/ctx.h, lib/db.c, lib/pat.c, lib/ql.c, lib/scm.c, lib/store.c, lib/str.c,
src/groonga.c, test/unit/core/test-expr.c,
test/unit/core/test-inverted-index.c,
test/unit/fixtures/performance/test-read-write.c: Added 'flags' argument to
GRN_TEXT_INIT(), GRN_OBJ_DO_SHALLOW_COPY and/or GRN_OBJ_VECTOR can be
assigned as its value. GRN_TEXT_INIT_REF has been cut off.
* groonga.h, lib/db.c, lib/str.c, lib/str.h, test/unit/core/test-expr.c:
Added grn_bulk_write_from() and GRN_TEXT_SET_CSTR().
* groonga.h, lib/com.c, lib/ctx.c, lib/db.c, lib/db.h, lib/hash.c, lib/pat.c,
lib/ql.h, lib/scm.c, lib/str.c, lib/str.h: grn_obj became inplace buffer.
2009-05-22 Toshihisa <[email protected]>
* lib/db.c: MUTEX_DESTROY in grn_db_close
2009-05-21 mori <[email protected]>
* groonga.h, lib/db.c, lib/db.h, lib/hash.c, lib/pat.c, lib/ql.c: modified
the value of GRN_OBJ_DO_SHALLOW_COPY.
2009-05-21 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* test/unit/memcached/test-memcached.c: Enabled test for memcached incr/decr
with init.
2009-05-20 mori <[email protected]>
* test/unit/core/Makefile.am, test/unit/core/test-expr.c: add tests for
grn_expr.
* lib/db.c: fixed a problem in grn_obj_column() cause segv when name contains
illegal character.
2009-05-19 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac: release 0.0.5
2009-05-19 mori <[email protected]>
* groonga.h, lib/db.c, lib/db.h, lib/ql.h: grn_expr add.
2009-05-15 mori <[email protected]>
* groonga.h, lib/ctx.c, lib/db.c, lib/ql.c, lib/str.c: renamed
grn_table_column into grn_obj_column
* examples/index.c, examples/kv.c, groonga.h, lib/ctx.c, lib/db.c,
lib/hash.c, lib/pat.c, lib/ql.c, lib/scm.c, lib/str.c, src/groonga.c,
test/unit/core/test-column.c, test/unit/core/test-inverted-index.c,
test/unit/core/test-table-cursor.c, test/unit/core/test-table.c: renamed
grn_ctx_lookup() into grn_ctx_get(), grn_ctx_get() into grn_ctx_at()
* lib/db.c, lib/token.c: fixed a memory leak bug.
2009-05-14 unknown <brazil@.(none)>
* lib/groonga_in.h: refined for _WIN64
2009-05-14 mori <[email protected]>
* lib/hash.c: fixed a bug grn_hash_lookup returns without setting the flag
value.
2009-05-13 Kouhei Sutou <[email protected]>
* lib/pat.c, test/unit/core/test-inverted-index.c: Remove garbages.
2009-05-13 mori <[email protected]>
* lib/ii.c, lib/token.c, lib/token.h: modified the signature of
grn_token_open().
* examples/index.c, examples/kv.c, groonga.h, lib/db.c, lib/hash.c,
lib/hash.h, lib/ii.c, lib/io.c, lib/io.h, lib/pat.c, lib/pat.h, lib/ql.c,
src/groonga.c, test/unit/core/test-column.c,
test/unit/core/test-inverted-index.c, test/unit/core/test-table.c,
test/unit/fixtures/performance/test-read-write.c,
test/unit/fixtures/stress/test-stress-hash.c: grn_table_lcp_search added.
2009-05-12 mori <[email protected]>
* lib/com.c, lib/ctx.c, lib/db.c, lib/hash.c, lib/hash.h, lib/ii.c,
lib/pat.c, lib/pat.h, lib/query.c, lib/scm.c, src/grnslap.c, src/groonga.c:
renmaed some private functions.
* test/unit/core/test-inverted-index.c, test/unit/core/test-table.c: unit
test follow new grn_table_add().
* groonga.h, lib/com.c, lib/ctx.c, lib/db.c, lib/db.h, lib/hash.c,
lib/hash.h, lib/ii.c, lib/pat.c, lib/pat.h, lib/ql.c, lib/query.c, lib/scm.c,
src/grnslap.c, src/groonga.c: modified grn_table_add api
2009-05-12 mori <mori@fracture.(none)>
* examples/kv.c, lib/db.c, test/unit/core/test-inverted-index.c:
grn_obj_set_value() skips to get oldvalue if possible.
2009-05-11 mori <mori@fracture.(none)>
* groonga.h, lib/db.c, test/unit/core/test-inverted-index.c: add
grn_obj_get_nhooks().
* lib/db.c, test/unit/core/test-database.c: grn_table_cursor_open() supports
grn_db as table argument.
* lib/db.c, lib/hash.c, lib/ii.c, lib/pat.c, lib/token.c,
test/unit/core/test-inverted-index.c, test/unit/core/test-table.c: changed
the default value of DEFAULT_TOKENIZER into NULL
2009-05-10 mori <mori@fracture.(none)>
* lib/db.c: grn_ctx_get return NULL if id is GRN_ID_NIL.
2009-05-09 Kouhei Sutou <[email protected]>
* lib/db.c: Add a comment.
* lib/db.c: Initialize opened table's range as NIL.
* lib/db.c: Initialize accessor's domain as NIL.
2009-05-09 mori <mori@fracture.(none)>
* examples/index.c, groonga.h, lib/db.c, lib/ql.c, src/groonga.c,
test/unit/core/test-inverted-index.c,
test/unit/fixtures/performance/test-read-write.c: GRN_TEXT_REF ->
GRN_TEXT_INIT_REF and GRN_TEXT_SET_REF.
* groonga.h, lib/db.c, lib/ql.c, lib/str.c, src/groonga.c,
test/unit/core/test-inverted-index.c: GRN_DB_UINT64 add.
2009-05-08 mori <mori@fracture.(none)>
* examples/index.c, examples/kv.c, groonga.h, lib/ctx.c, lib/db.c, lib/ql.c,
lib/scm.c, lib/store.c, lib/str.c, src/groonga.c,
test/unit/core/test-inverted-index.c,
test/unit/fixtures/performance/test-read-write.c: grn_bulk_* -> grn_text_*
groonga.h (grn_bulk_*): renamed into grn_text_*.
* examples/kv.c, groonga.h, lib/ctx.c, lib/ctx.h, lib/db.c, lib/ql.c,
lib/ql.h, lib/scm.c, lib/str.c, src/grnslap.c,
test/unit/fixtures/performance/test-read-write.c: GRN_BULK_PUTC ->
GRN_TEXT_PUTC
* examples/kv.c, groonga.h, lib/com.c, lib/ctx.h, lib/db.c, lib/ql.c,
lib/scm.c, lib/str.c: GRN_BULK_PUTS -> GRN_TEXT_PUTS
* examples/kv.c, groonga.h, lib/com.c, lib/ctx.c, lib/ctx.h, lib/db.c,
lib/pat.c, lib/ql.c, lib/scm.c, lib/store.c, lib/str.c, src/groonga.c,
test/unit/core/test-inverted-index.c: GRN_BULK_INIT -> GRN_TEXT_INIT
2009-05-08 Kouhei Sutou <[email protected]>
* lib/db.c: Initialize opened DB's domain and range as NIL.
2009-05-08 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* src/groonga.c: Added a max_nfthreads parameter on groonga.
2009-05-08 mori <mori@fracture.(none)>
* test/unit/fixtures/performance/test-read-write.c: test-read-write.c: follow
GRN_OBJ_INIT().
* examples/index.c, examples/kv.c, groonga.h, lib/com.c, lib/ctx.c,
lib/ctx.h, lib/db.c, lib/ii.c, lib/pat.c, lib/ql.c, lib/scm.c, lib/store.c,
lib/str.c, src/groonga.c, test/unit/core/test-inverted-index.c: added
GRN_BULK_INIT() macro.
2009-05-07 Kouhei Sutou <[email protected]>
* test/unit/core/test-inverted-index.c: Suppress warnigs.
* test/unit/core/test-patricia-trie.c, test/unit/core/test-query.c: Supress
warnings.
* test/unit/core/test-patricia-trie.c: Ensure NULL terminated.
2009-05-07 mori <mori@fracture.(none)>
* lib/ii.c, lib/pat.c, lib/store.c, test/unit/core/test-inverted-index.c:
test_int_index() added.
2009-05-07 Kouhei Sutou <[email protected]>
* test/unit/fixtures/performance/test-read-write.c: Implement a commented out
test.
2009-05-07 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* src/grnslap.c: Avoid SEGV if parse fails on grnslap.
2009-05-01 Kouhei Sutou <[email protected]>
* lib/db.c: Fix a memory leak.
2009-05-01 mori <[email protected]>
* lib/db.c, lib/token.c, lib/token.h, test/unit/core/test-inverted-index.c:
GRN_TABLE_NO_KEY type table can be used as lexicon.
2009-04-30 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* configure.ac: release 0.0.4
2009-04-30 mori <[email protected]>
* test/unit/core/test-inverted-index.c: grn_ii_create accept NULL for path
argument.
* ChangeLog, lib/token.c: fixed a bug in token.c, cause wrong flag handling.
* ChangeLog, lib/db.c, lib/hash.c, lib/pat.c, lib/ql.c,
test/unit/core/test-hash-sort.c: fixed a bug cause wrong sort result.
* ChangeLog, groonga.h: replaced default sor order.
* ChangeLog, examples/kv.c, groonga.h, lib/db.c: lib/db.c (grn_column_name):
add.
2009-04-29 mori <[email protected]>
* ChangeLog, examples/index.c, examples/kv.c, groonga.h, lib/com.c,
lib/ctx.c, lib/db.c, lib/hash.c, lib/ii.c, lib/io.c, lib/pat.c, lib/ql.c,
lib/ql.h, lib/query.c, lib/scm.c, lib/snip.c, lib/str.c, lib/str.h,
lib/token.c, src/grnslap.c, src/groonga.c,
test/benchmark/bench-table-factory.c, test/unit/core/test-column.c,
test/unit/core/test-inverted-index.c,
test/unit/core/test-patricia-trie-search.c,
test/unit/core/test-patricia-trie.h, test/unit/core/test-performance.c,
test/unit/core/test-public-context.c, test/unit/core/test-query.c,
test/unit/core/test-stress.c, test/unit/core/test-table-cursor.c,
test/unit/core/test-table.c, test/unit/lib/grn-test-hash-factory.c,
test/unit/util/test-snip.c, test/unit/util/test-string.c: cut off encoding
argument from many APIs.
* ChangeLog, bindings/python/ql/groongaql.c, examples/index.c, examples/kv.c,
groonga.h, lib/ctx.c, lib/db.c, src/grnslap.c, src/groonga.c,
test/benchmark/bench-table-factory.c, test/unit/core/test-column.c,
test/unit/core/test-database.c, test/unit/core/test-inverted-index.c,
test/unit/core/test-patricia-trie.h, test/unit/core/test-performance.c,
test/unit/core/test-public-context.c, test/unit/core/test-query.c,
test/unit/core/test-store.c, test/unit/core/test-stress.c,
test/unit/core/test-table-cursor.c, test/unit/core/test-table.c,
test/unit/fixtures/performance/test-read-write.c,
test/unit/fixtures/stress/test-stress-hash.c,
.../fixtures/stress/test-stress-patricia-trie.c,
test/unit/lib/grn-test-hash-factory.c, test/unit/util/test-snip.c,
test/unit/util/test-string.c: cut off encoding argument from grn_ctx_init.
2009-04-28 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog: Updated ChangeLog of slap-roundrobin branch.
* src/grnslap.c: use counter instead of rand on grnslap dispatcher.
* src/grnslap.c: Added verbose mode on grnslap.
2009-04-28 Kouhei Sutou <[email protected]>
* ChangeLog, groonga.h, lib/db.c, test/unit/core/Makefile.am,
test/unit/core/test-table-cursor.c: Add grn_table_cursor_table().
2009-04-28 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* src/grnslap.c: Supports multi server/port on grnslap.
2009-04-27 t2001 <[email protected]>
* lib/groonga_in.h: multi thread check needed
* lib/io.c: fix UnmapViewOfFile.
2009-04-27 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* src/groonga.c: support quiet commands of memcached.
2009-04-26 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* src/groonga.c, test/unit/memcached/test-memcached.c: Implemented cas like
memcached-1.2.8.
2009-04-26 Kouhei Sutou <[email protected]>
* ChangeLog, lib/db.c, test/unit/core/Makefile.am,
test/unit/core/test-database.c: Initialize database's domain and range.
2009-04-26 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* test/unit/memcached/test-memcached.c: Added test_memcached_cas.
* src/groonga.c: Added a GRN_MSG_MBRES macro.
2009-04-26 mori <[email protected]>
* ChangeLog, src/grnslap.c: add max concurrency parameter to grnslap.
2009-04-25 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac: release 0.0.3
* ChangeLog, configure.ac: configure succeeds without mecab.
* ChangeLog, configure.ac: removed inline parameters for compiler.
2009-04-25 mori <[email protected]>
* ChangeLog, lib/io.h: cut off debug log.
* ChangeLog, lib/ii.c: fixed a leak error in ii.c
* lib/io.h: add debug info.
* ChangeLog, lib/ctx.h, lib/io.h, src/groonga.c: add LOGTRACE macro.
2009-04-24 mori <[email protected]>
* lib/com.c:
2009-04-24 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, lib/scm.c: Fixed segv with quasiquote for invalid sexp.
2009-04-24 mori <[email protected]>
* ChangeLog, lib/com.c:
* ChangeLog, src/groonga.c: src/groonga.c (worker): add lock.
* ChangeLog, lib/store.c: lib/store.c (grn_ja): add lock.
2009-04-23 mori <[email protected]>
* ChangeLog, lib/com.c, lib/io.c, lib/store.c: lib/com.c (grn_msg_open):
memzero gqtp header.
2009-04-23 Kouhei Sutou <[email protected]>
* ChangeLog, lib/db.c: avoid SEGV when no DB is set.
2009-04-23 mori <[email protected]>
* ChangeLog, src/groonga.c: groonga server expands RLIMIT_NOFILE.
2009-04-23 Kouhei Sutou <[email protected]>
* ChangeLog, lib/db.c: Initialize type's domain as NIL.
2009-04-23 mori <[email protected]>
* ChangeLog, lib/db.c: fixed a bug in lib/db.c.
* lib/db.c: fixed a bug in lib/db.c.
2009-04-22 mori <[email protected]>
* ChangeLog, lib/com.c, lib/com.h, src/grnslap.c, src/groonga.c: fixed a bug
in grnslap.
2009-04-22 Tasuku SUENAGA <tasuku@bakuon.(none)>
* ChangeLog, configure.ac: Fixed compile problem without libmemcached.
2009-04-22 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, src/groonga.c, test/unit/memcached/test-memcached.c: Fixed bugs
of memcached incr/decr commands.
2009-04-21 mori <[email protected]>
* .gitignore, ChangeLog, lib/com.c, lib/ctx.c, src/Makefile.am,
src/grnslap.c, src/groonga.c:
2009-04-20 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, src/groonga.c: Fixed add command bug of memcached.
* ChangeLog, src/groonga.c: Fixed set/add/replace bug when expire == 0.
* ChangeLog, src/groonga.c, test/unit/memcached/test-memcached.c:
2009-04-19 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/db.h:
2009-04-18 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/db.c, lib/str.c:
2009-04-17 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/ctx.h, lib/db.c, lib/io.c:
2009-04-16 Kouhei Sutou <[email protected]>
* ChangeLog, test/unit/memcached/test-memcached.c: Improve test stability.
* ChangeLog, test/unit/core/test-table.c: Add a test for adding a record.
* test/unit/memcached/test-memcached.c: Remove an unused variable.
* ChangeLog, test/unit/core/test-table.c: Add a test for set/get default
tokenizer.
* ChangeLog, test/unit/memcached/Makefile.am,
test/unit/memcached/test-memcached.c: Improve groonga process management.
* ChangeLog, test/unit/memcached/test-memcached.c: Make memory management
robust.
* ChangeLog, configure.ac, test/unit/memcached/Makefile.am: Detect
libmemcached availability.
2009-04-15 mori <[email protected]>
* ChangeLog, lib/db.c, test/unit/core/test-table.c:
* ChangeLog, lib/com.c, lib/ctx.c, src/groonga.c:
* ChangeLog, lib/com.c, lib/com.h:
* ChangeLog, lib/store.c, src/groonga.c:
* ChangeLog, lib/com.c, lib/com.h, src/groonga.c:
* ChangeLog, lib/scm.c:
* ChangeLog, lib/scm.c:
2009-04-14 Yu.Shimamura <[email protected]>
* ChangeLog, configure.ac, lib/com.c:
2009-04-14 mori <[email protected]>
* ChangeLog, lib/ctx.c, lib/ctx.h, lib/db.c:
* ChangeLog, lib/ctx.c:
* ChangeLog, lib/ctx.c:
* ChangeLog, lib/ctx.c:
* ChangeLog, lib/ctx.c, lib/str.c:
2009-04-13 mori <[email protected]>
* ChangeLog, lib/ctx.c, lib/db.h, src/groonga.c:
2009-04-13 Kouhei Sutou <[email protected]>
* ChangeLog, test/unit/core/test-column.c: add a missing file.
2009-04-13 mori <[email protected]>
* ChangeLog, lib/ctx.c, lib/ctx.h, test/unit/core/Makefile.am,
test/unit/lib/grn-assertions.c, test/unit/lib/grn-assertions.h,
test/unit/lib/grn-test-utils.c, test/unit/lib/grn-test-utils.h:
2009-04-12 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/db.c, lib/db.h, lib/ql.h:
2009-04-10 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac, lib/com.c, lib/com.h, lib/db.c, src/groonga.c,
test/unit/Makefile.am, test/unit/memcached/Makefile.am,
test/unit/memcached/test-memcached.c:
2009-04-10 mori <[email protected]>
* ChangeLog, src/groonga.c:
* src/groonga.c:
* ChangeLog, src/groonga.c:
* ChangeLog, src/groonga.c:
* ChangeLog, lib/com.c, lib/com.h, lib/ctx.c, src/groonga.c:
2009-04-09 mori <[email protected]>
* ChangeLog, lib/com.c, lib/ctx.h, lib/store.c:
* ChangeLog, lib/db.c, lib/io.c, lib/io.h, lib/store.c, lib/store.h:
* ChangeLog, lib/ctx.h:
* ChangeLog, lib/db.c, lib/store.c, lib/store.h, src/groonga.c:
2009-04-08 mori <[email protected]>
* ChangeLog, src/groonga.c:
2009-04-08 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, Makefile.am, test/unit/fixtures/inverted-index/Makefile.am:
* ChangeLog, test/unit/fixtures/inverted-index/Makefile.am:
2009-04-08 Kouhei Sutou <[email protected]>
* ChangeLog, groonga.h:
2009-04-08 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, lib/com.c, lib/groonga_in.h:
2009-04-08 Kouhei Sutou <[email protected]>
* ChangeLog:
2009-04-08 mori <[email protected]>
* groonga.h, test/unit/core/test-table.c:
* ChangeLog, lib/hash.c, test/unit/core/Makefile.am:
* ChangeLog, groonga.h, lib/db.h:
* ChangeLog, configure.ac, lib/com.c, lib/com.h, lib/ctx.h:
2009-04-08 Kouhei Sutou <[email protected]>
* ChangeLog, test/benchmark/bench-table-factory.c,
test/benchmark/lib/bench-reporter.c, test/benchmark/lib/bench-reporter.h,
test/benchmark/lib/bench-utils.c, test/benchmark/lib/bench-utils.h,
test/benchmark/lib/benchmark.c, test/benchmark/lib/benchmark.h,
test/unit/core/test-context.c, test/unit/core/test-hash-cursor.c,
test/unit/core/test-hash-sort.c, test/unit/core/test-hash.c,
test/unit/core/test-hash.h, test/unit/core/test-inverted-index.c,
test/unit/core/test-patricia-trie-cursor.c,
test/unit/core/test-patricia-trie-search.c,
test/unit/core/test-patricia-trie.c, test/unit/core/test-patricia-trie.h,
test/unit/core/test-performance.c, test/unit/core/test-public-context.c,
test/unit/core/test-query.c, test/unit/core/test-store.c,
test/unit/core/test-stress.c,
test/unit/fixtures/performance/test-read-write.c,
test/unit/fixtures/stress/test-stress-hash.c,
.../fixtures/stress/test-stress-patricia-trie.c,
test/unit/fixtures/suite-groonga-test-fixtures.c,
test/unit/lib/grn-assertions.c, test/unit/lib/grn-assertions.h,
test/unit/lib/grn-test-hash-assertions.c,
test/unit/lib/grn-test-hash-assertions.h,
test/unit/lib/grn-test-hash-factory.c, test/unit/lib/grn-test-hash-factory.h,
test/unit/lib/grn-test-utils.c, test/unit/lib/grn-test-utils.h,
test/unit/suite-groonga-test.c, test/unit/util/test-snip.c,
test/unit/util/test-string.c:
2009-04-07 mori <[email protected]>
* ChangeLog, lib/com.c, lib/com.h, src/groonga.c:
* ChangeLog, lib/com.c, lib/com.h, lib/ctx.c, src/groonga.c:
* ChangeLog, src/groonga.c:
* ChangeLog, lib/db.c, lib/hash.c, lib/hash.h, lib/io.c:
2009-04-06 mori <[email protected]>
* ChangeLog, lib/com.c, lib/com.h, src/groonga.c:
* ChangeLog, lib/com.c, lib/com.h, lib/ctx.c, lib/ql.c, lib/ql.h, lib/scm.c,
src/groonga.c:
* ChangeLog, lib/com.c, lib/com.h, lib/ctx.c, lib/ql.h, src/groonga.c:
2009-04-05 Kouhei Sutou <[email protected]>
* ChangeLog, bindings/python/ql/groongaql.c, groonga.h, lib/ctx.h,
test/unit/lib/grn-test-utils.c:
2009-04-03 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, build_windows.bat:
2009-04-02 mori <[email protected]>
* ChangeLog, groonga.h, lib/com.c, lib/com.h, lib/db.c, src/groonga.c:
* ChangeLog, groonga.h, lib/com.c, lib/com.h, src/groonga.c:
2009-03-31 mori <[email protected]>
* ChangeLog, groonga.h, lib/com.c, lib/com.h:
2009-03-31 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* lib/groonga_in.h:
* configure.ac, groonga.h:
2009-03-23 unknown <tasuku@.(none)>
* build_windows.bat, groonga.h, lib/Makefile.msvc, lib/com.c,
lib/groonga_in.h, lib/libgroonga.c, lib/ql.h, src/Makefile.msvc,
vcc/config.h, vcc/config.h.in:
2009-03-26 Kouhei Sutou <[email protected]>
* doc/ja/API.rd:
2009-03-26 mori <[email protected]>
* ChangeLog, lib/ii.c, lib/io.c, lib/io.h:
* ChangeLog, lib/ctx.c, lib/io.c, lib/io.h:
2009-03-25 mori <[email protected]>
* ChangeLog, lib/db.c, lib/ii.c, lib/io.c, lib/io.h, lib/store.c,
lib/store.h:
2009-03-24 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, lib/ctx.c, lib/ctx.h, lib/groonga_in.h:
* ChangeLog, lib/ctx.c, lib/groonga_in.h:
* configure.ac, lib/com.c, lib/ctx.c, lib/groonga_in.h, lib/ql.c,
src/groonga.c:
* ChangeLog, configure.ac:
2009-03-24 mori <[email protected]>
* ChangeLog, lib/io.c, lib/io.h, lib/token.c:
2009-03-23 mori <[email protected]>
* ChangeLog, lib/ii.c, lib/io.c, lib/io.h, lib/store.c,
test/unit/core/test-inverted-index.c:
* ChangeLog, lib/ii.c, lib/io.c, lib/io.h,
test/unit/core/test-inverted-index.c:
2009-03-22 mori <[email protected]>
* lib/ii.c, lib/io.c:
* ChangeLog, lib/ctx.h, lib/ii.c, lib/ii.h, lib/io.c, lib/io.h:
2009-03-21 mori <[email protected]>
* ChangeLog, lib/ii.c:
2009-03-19 mori <[email protected]>
* ChangeLog, lib/com.c, lib/ql.c:
2009-03-18 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, lib/com.c:
* ChangeLog, configure.ac:
2009-03-17 Kouhei Sutou <[email protected]>
* test/benchmark/Makefile.am, test/unit/core/Makefile.am,
test/unit/util/Makefile.am:
2009-03-16 Kouhei Sutou <[email protected]>
* test/ql/test-slot.scm:
* test/ql/ql-test-utils.scm, test/ql/test-slot.scm:
* configure.ac:
2009-03-16 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, groonga.spec.in:
2009-03-16 mori <[email protected]>
* test/s2s, test/s2s.c, vcc/config.h:
2009-03-15 Kouhei Sutou <[email protected]>
* test/unit/core/test-hash-cursor.c,
test/unit/core/test-patricia-trie-cursor.c,
test/unit/core/test-patricia-trie-search.c:
* test/unit/core/test-inverted-index.c:
* test/unit/core/test-hash-sort.c:
* test/unit/core/test-stress.c:
* test/unit/core/test-query.c:
* test/unit/core/test-patricia-trie.c, test/unit/core/test-patricia-trie.h:
* test/unit/util/test-string.c:
* test/unit/util/test-snip.c:
* test/unit/suite-groonga-test.c, test/unit/suite-senna-test.c:
* test/unit/core/test-query.c:
* test/unit/core/test-public-context.c:
* test/unit/core/test-performance.c, test/unit/core/test-stress.c:
* test/unit/core/test-performance.c:
* test/unit/core/test-patricia-trie-cursor.c,
test/unit/core/test-patricia-trie-search.c:
* test/unit/core/test-patricia-trie-cursor.c:
* test/unit/core/test-patricia-trie.c, test/unit/core/test-patricia-trie.h:
* test/unit/core/test-hash-cursor.c, test/unit/core/test-hash-sort.c,
test/unit/core/test-inverted-index.c:
* test/unit/core/test-hash-cursor.c:
* test/unit/core/test-hash-sort.c:
* test/unit/core/test-hash.c, test/unit/core/test-hash.h:
* test/unit/core/Makefile.am, test/unit/core/test-context.c:
* test/unit/core/Makefile.am, test/unit/core/test-store.c:
* test/unit/core/Makefile.am, test/unit/core/test-index.c:
2009-03-14 Kouhei Sutou <[email protected]>
* test/benchmark/Makefile.am, test/benchmark/bench-table-factory.c:
2009-03-13 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, configure.ac:
2009-03-13 mori <[email protected]>
* ChangeLog, lib/ctx.c:
* ChangeLog, lib/scm.c:
* ChangeLog, lib/ctx.h, lib/db.c:
* ChangeLog, lib/db.c:
* ChangeLog, lib/db.c:
* ChangeLog, lib/scm.c:
2009-03-12 Kouhei Sutou <[email protected]>
* test/unit/util/test-string.c:
* test/unit/util/Makefile.am, test/unit/util/test-snip.c:
* test/unit/fixtures/suite-groonga-test-fixtures.c:
* test/unit/fixtures/suite-groonga-test-fixtures.c,
test/unit/fixtures/suite-senna-test-fixtures.c:
* test/unit/core/test-performance.c,
test/unit/fixtures/performance/Makefile.am,
test/unit/fixtures/performance/test-read-write.c,
test/unit/lib/grn-test-utils.h:
* .../fixtures/stress/test-stress-patricia-trie.c:
* test/unit/fixtures/stress/Makefile.am,
test/unit/fixtures/stress/test-stress-hash.c:
* test/unit/core/test-stress.c:
2009-03-12 mori <[email protected]>
* ChangeLog, lib/scm.c:
2009-03-12 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* bindings/python/context/groongactx.c, bindings/python/context/setup.py,
bindings/python/ql/groongaql.c, bindings/python/ql/setup.py:
* bindings/python/context/groongactx.c, bindings/python/context/setup.py:
2009-03-12 mori <[email protected]>
* ChangeLog, lib/ql.c, lib/scm.c:
2009-03-11 mori <[email protected]>
* ChangeLog, lib/ql.c:
* ChangeLog, lib/db.c, lib/ql.c, lib/token.c:
* ChangeLog, lib/ctx.c, lib/db.c, lib/ql.c, lib/scm.c:
* ChangeLog, lib/ii.c:
2009-03-10 mori <[email protected]>
* ChangeLog, lib/db.c:
* ChangeLog, lib/db.c, lib/ii.c, lib/ql.c:
* ChangeLog, lib/db.c, lib/ql.c:
* ChangeLog, lib/db.c:
* ChangeLog, lib/ii.c:
2009-03-09 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/db.c, lib/db.h, lib/ii.c, lib/ql.c,
lib/scm.c, lib/store.c:
2009-03-05 mori <[email protected]>
* ChangeLog, lib/db.c:
2009-03-03 mori <[email protected]>
* ChangeLog, lib/ql.c:
2009-03-02 mori <[email protected]>
* ChangeLog, lib/scm.c:
* ChangeLog, groonga.h, lib/db.c, lib/ql.c:
* doc/ja/API.html, doc/ja/API.rd:
2009-03-02 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, doc/ja/API.rd:
2009-03-01 mori <[email protected]>
* ChangeLog, lib/db.c:
* ChangeLog, groonga.h, lib/db.c, lib/ii.c, lib/ql.c, lib/str.h:
* ChangeLog, lib/ql.c, lib/token.c:
2009-02-27 mori <[email protected]>
* ChangeLog, doc/ja/API.html, doc/ja/API.rd:
* ChangeLog, README, doc/README.ja, doc/ja/API.html, doc/ja/API.rd,
doc/ja/README, groonga.h, lib/ctx.c:
* ChangeLog, src/groonga.c:
* ChangeLog, README, doc/README.ja:
2009-02-25 mori <[email protected]>
* ChangeLog, lib/db.c, lib/hash.c, lib/pat.c, lib/ql.c:
2009-02-25 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog:
2009-02-25 mori <[email protected]>
* groonga.h, lib/db.c, lib/ii.c, lib/ql.c, src/groonga.c:
2009-02-25 Tasuku SUENAGA a.k.a. gunyarakun <[email protected]>
* ChangeLog, src/groonga.c:
2009-02-24 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/db.c, lib/ii.c, lib/ii.h, lib/ql.c,
lib/scm.c:
* ChangeLog, groonga.h:
2009-02-23 mori <[email protected]>
* ChangeLog, lib/com.c, lib/com.h, src/groonga.c:
2009-02-20 mori <[email protected]>
* ChangeLog, lib/com.h:
2009-02-19 mori <[email protected]>
* ChangeLog, lib/com.c, src/groonga.c:
* ChangeLog, lib/hash.c, lib/ii.c, lib/pat.c, src/groonga.c:
2009-02-18 mori <[email protected]>
* ChangeLog, groonga.h, lib/ctx.c, lib/ii.c, src/groonga.c:
* ChangeLog, lib/ii.c, lib/ql.c:
2009-02-17 mori <[email protected]>
* ChangeLog, lib/ctx.c, lib/ctx.h, lib/db.c, lib/ii.c, lib/io.c, lib/ql.c,
lib/query.c:
2009-02-15 mori <[email protected]>
* ChangeLog, lib/db.c, lib/ii.c, lib/token.c:
2009-02-14 mori <[email protected]>
* ChangeLog, lib/ii.c, lib/ii.h:
2009-02-13 mori <[email protected]>
* ChangeLog, groonga.h, lib/db.c, lib/ii.c, lib/ql.c, lib/store.c: