forked from svn2github/libpqxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
6256 lines (6251 loc) · 275 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
2016-03-06 Jeroen T. Vermeulen <[email protected]>
win32/INSTALL.txt:
- Run "VCVARSALL.BAT amd64", not "VCVARS32.BAT".
- See #361. Thanks WedgetailSystems.
2016-03-06 Jeroen T. Vermeulen <[email protected]>
win32/vc-libpqxx.mak.template:
- Change Windows build from x86 to x86-64.
- See #361. Thanks WedgetailSystems.
2016-02-25 Jeroen T. Vermeulen <[email protected]>
include/pqxx/tablewriter.hxx:
- Include <iterator>. Thanks Ivan Zinkevich.
2015-06-22 Jeroen T. Vermeulen <[email protected]>
configitems, configure.ac.in:
- Test for isnan()/isinf() and std::isnan()/std::isinf() separately.
README, src/binarystring.cxx, src/connection_base.cxx, src/connection.cxx,
src/cursor.cxx, src/dbtransaction.cxx, src/except.cxx, src/field.cxx,
src/largeobject.cxx, src/nontransaction.cxx, src/pipeline.cxx,
src/prepared_statement.cxx, src/result.cxx, src/robusttransaction.cxx,
src/row.cxx, src/statement_parameters.cxx, src/strconv.cxx,
src/subtransaction.cxx, src/tablereader.cxx, src/tablestream.cxx,
src/tablewriter.cxx, src/transaction_base.hcxx, src/transaction.cxx,
src/util.cxx, tools/pqxxthreadsafety.cxx, tools/rmlo.cxx:
- Remove "using namespace std;" qualify explicitly.
- Should resolve ambiguous isnan/std::isnan overload on some systems.
2015-04-26 Jeroen T. Vermeulen <[email protected]>
configitems, configure.ac.in, include/pqxx/compiler-public.hxx,
include/pqxx/connection_base.hxx, include/pqxx/errorhandler.hxx,
include/pqxx/largeobject.hxx, include/pqxx/row.hxx:
- Use "=delete" on forbidden special member functions if available.
2015-04-26 Jeroen T. Vermeulen <[email protected]>
configitems, configure.ac.in, include/pqxx/compiler-public.hxx,
include/pqxx/connection.hxx, include/pqxx/dbtransaction.hxx,
include/pqxx/errorhandler.hxx, include/pqxx/except.hxx,
include/pqxx/field.hxx, include/pqxx/largeobject.hxx,
include/pqxx/nontransaction.hxx, include/pqxx/robusttransaction.hxx,
include/pqxx/subtransaction.hxx, include/pqxx/tablereader.hxx,
include/pqxx/tablewriter.hxx, include/pqxx/transaction.hxx,
test/test004.cxx, test/test023.cxx, test/test079.cxx, test/test087.cxx,
test/test/094.cxx, test/test_helpers.hxx, test/unit/test_errorhandler.cxx,
test/unit/test_notification.cxx:
- Use C++14 "final" if available.
- Use C++14 "override" if available.
2015-04-05 Jeroen T. Vermeulen <[email protected]>
test/test049.cxx:
- No longer needs to include internal compiler tweaks for count_if().
2015-04-05 Jeroen T. Vermeulen <[email protected]>
win32/vc-libpqxx.mak.template, win32/vc-test.mak.template:
- Use :: instead of : in each non-phony rule definition.
- Quote filenames for "copy" command.
- Thanks Daniel Polski for getting this working on Visual Studio 2013.
2015-01-28 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2013:
- Sample headers for Visual Studio 2013.
2015-01-28 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection_base.hxx, src/connection_base.cxx:
- Remove promise that read_capabilities won't throw exceptions.
2015-01-26 Jeroen T. Vermeulen <[email protected]>
test/test_helpers.hxx:
- Show actual value before expected value; more helpful if it gets truncated.
test/unit/test_escape.cxx:
- Print escaped string for debugging. Test fails against early 9.x postgres.
- Test against unprintable characters.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
tools/lint:
- Change mktemp naming scheme.
tools/maketemporary, tools/pqxx-fulltest, tools/pre-release-check,
tools/release:
- Use $() instead of ``.
- Break shell if/then onto separate lines.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
autogen.sh:
- Cosmetic.
config/missing:
- Update to version from automake 1.14.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
autogen.sh:
- Remove commented-out LC_ALL=C. Locales work now, and fast enough.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
autogen.sh:
- Simply require Python.
- Use $() instead of ``.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
autogen.sh:
- Drop search for specific (and now long obsolete) automake versions.
configure.ac.in, src/Makefile.am, test/Makefile.am.template,
test/unit/Makefile.am.template, tools/Makefile.am:
- Use newer, zero-arg version of AM_INIT_AUTOMAKE.
- Move AC_CONFIG_SRCDIR above AM_INIT_AUTOMAKE; may be required now.
- Wrap source fragments in AC_LANG_SOURCE, and double-quote them.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
include/pqxx/basic_connection.hxx, include/pqxx/compiler-public.hxx,
include/pqxx/robusttransaction.hxx, include/pqxx/subtransaction.hxx,
include/pqxx/transaction.hxx, src/connection_base.cxx, src/largeobject.cxx,
src/notification.cxx, src/pipeline.cxx, src/tablereader.cxx,
src/tablewriter.cxx, src/transaction_base.cxx:
- Remove PQXX_QUIET_DESTRUCTORS. Surely that Visual C++ 2003 bug's been fixed.
2015-01-23 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Make default inline symbol visibility of "hidden" work again.
- Also make non-inline symbols hidden by default.
include/pqxx/binarystring.hxx, src/binarystring.cxx:
- Replace PQAlloc member with a reference to PQAlloc.
- Less efficient, but conflicted with "hidden" inline visibility.
- Becomes easier once we can require shared_ptr.
2015-01-22 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Add --with-postgres-include and --with-postgres-lib options.
- Start using AS_IF() instead of plain shell "if".
- Start using $() instead of ``.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
configitems, configure.ac.in, include/pqxx/binarystring.hxx,
include/pqxx/compiler-public.hxx, include/pqxx/config.h.in,
include/pqxx/cursor.hxx, include/pqxx/except.hxx,
include/pqxx/largeobject.hxx, include/pqxx/pipeline.hxx,
include/pqxx/result.hxx, include/pqxx/robusttransaction.hxx,
include/pqxx/row.hxx, include/pqxx/strconv.hxx, include/pqxx/tablereader.hxx,
include/pqxx/tablewriter.hxx, include/pqxx/transaction_base.hxx,
include/pqxx/util.hxx, src/connection_base.cxx, src/except.cxx,
test/test_main.hxx:
- Support C++11 [[noreturn]] attribute.
- Support C++14 [[deprecated]] attribute.
- Move function attributes to front of declaration.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
src/strconv.cxx:
- Remove half-baked optimization when converting non-number floats to strings.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
tools/lint:
- Find all headers, including in subdirectories, but skip directories.
- Make script fail on error.
- Use $() instead of ``.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection_base.hxx, include/pqxx/transaction_base.hxx,
src/connection_base.cxx, test/unit/test_escape.cxx:
- New unesc_raw() function: un-escapes binary data.
- Fixes #277. Thanks Markus Parker.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
test/unit/test_subtransaction.cxx:
- Reproduce #271: subtransaction does not roll back implicitly.
- Test subtransaction's commit behaviour more systematically.
src/subtransaction.cxx:
- Call End() from destructor. Fixes #271. Thanks harmic.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
test/test069.cxx:
- Fix spurious failure; sometimes the number of tables seems to change.
2015-01-18 Jeroen T. Vermeulen <[email protected]>
tools/lint, tools/splitconfig, tools/template2mak.py:
- Check for, and fix, Python lint.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
include/Makefile.am, include/pqxx/notify-listen,
include/pqxx/notify-listen.hxx, include/pqxx/pqxx,
src/Makefile.am, src/notify-listen.cxx:
- Remove deprecated notify_listener class.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
include/pqxx/trigger, include/pqxx/trigger.hxx:
- Remove deprecated trigger class.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
include/pqxx/binarystring.hxx, src/binarystring.cxx:
- Remove deprecated escape_binary functions.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
src/binarystring.cxx:
- Remove an internal level of indirection that was no longer needed.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
tools/extract-version:
- Replace obsolete sed -E option. Fixes #265.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
include/pqxx/row.hxx:
- Document slowness of indexing fields by name.
- Fixes #274. Thanks redrett.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
tools/splitconfig, tools/template2mak.py:
- Use /usr/bin/python instead of /usr/bin/python. Closees #280.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
include/pqxx/notification.hxx:
- Remove spurious second inclusion of compiler-internal-pre.hxx.
- Fixes #283. Thanks Jeroen Walter.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
win32/common-sample:
- Document different libpq path when using MinGW.
- Fixes #289. Thanks ajonen.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
win32/INSTALL.txt:
- Note not to combine 32-bit and 64-bit libraries. Thanks J. Voelker.
2015-01-16 Jeroen T. Vermeulen <[email protected]>
src/largeobject.cxx:
- Include <algorithm> so that min()/max() work.
2015-01-15 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/gcc-4.4/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in:
- Remove check for nonstandard, and unneeded, strnlen().
2015-01-15 Jeroen T. Vermeulen <[email protected]>
README-UPGRADE,
config/sample-headers/compiler/gcc-4.4/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in,
include/pqxx/connection_base.hxx:
- Remove deprecated "noticer" definitions.
- Remove detection of auto_ptr; it is deprecated, and no longer needed either.
2015-01-15 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection_base.hxx,
include/pqxx/except.hxx,
include/pqxx/row.hxx,
include/pqxx/transaction_base.hxx,
src/connection_base.cxx,
src/cursor.cxx,
test/test088.cxx,
test/test089.cxx,
test/test093.cxx,
test/unit/test_parameterized.cxx,
test/unit/test_prepared_statement.cxx:
test/unit/test_read_transaction.cxx,
test/unit/test_sql_cursor.cxx:
- Drop support for frontend/backend protocol version 2; require version 3.
- Version 3 was introduced around postgres 7.4.
- The server only needs version 2 for clients that haven't been updated.
2015-01-15 Jeroen T. Vermeulen <[email protected]>
src/connection_base.cxx:
- Remove some more workarounds for 8.x servers.
2015-01-15 Jeroen T. Vermeulen <[email protected]>
include/pqxx/dbtransaction.hxx, include/pqxx/subtransaction.hxx,
src/connection_base.cxx, src/cursor.cxx, src/dbtransaction.cxx,
src/subtransaction.cxx:
- Drop support for 8.x backends; require 9.0 or better.
2015-01-15 Jeroen T. Vermeulen <[email protected]>
README-UPGRADE, config/sample-headers/libpq/, configitems, configure.ac.in,
include/pqxx/Makefile.am, include/pqxx/compiler-internal.hxx,
include/pqxx/config.h.in, src/binarystring.cxx, src/connection_base.cxx,
src/util.cxx, test/test000.cxx, test/test093.cxx,
test/unit/test_parameterized.cxx, tools/pqxx-fulltest, win32/INSTALL.txt:
- Drop support for libpq 8.x; require 9.0 or better.
- The whole config header for libpq features is currently gone!
2015-01-15 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/gcc-4.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in, src/strconv.cxx:
- Rename PQXX_HAVE_C_ISINF, similar to PQXX_HAVE_C_ISNAN.
- Fix check for isinf(), just like the one for isnan().
2015-01-15 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/gcc-4.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in, src/strconv.cxx:
- Rename PQXX_HAVE_C_ISNAN; TR1 defines a std::isnan() and we can use either.
- Fix check for isnan(); it always failed due to a syntax error.
- Add PQXX_HAVE_ISNAN to configitems; it was missing.
- Add PQXX_HAVE_ISNAN to sample headers.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/gcc-4.4/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in:
- Remove detection of C99 nan(); no longer needed for workarounds.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-4.4/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in, src/strconv.cxx,
test/test000.cxx:
- Remove workarounds for missing numeric_limits::quiet_NaN().
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.4/pqxx/config-public-compiler.h,
configitems,
configure.ac.in,
include/pqxx/config.h.in,
include/pqxx/strconv.hxx,
src/strconv.cxx,
test/test046.cxx,
test/test074.cxx:
- Always enable support for the "long double" type.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.4/pqxx/config-public-compiler.h,
configitems,
configure.ac.in,
include/pqxx/config.h.in,
include/pqxx/strconv.hxx,
src/strconv.cxx,
test/test000.cxx:
- Always enable support for the "long long" type.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/gcc-4.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-4.4/pqxx/config-public-compiler.h:
- Added sample headers for g++ 4.4.
config/sample-headers/compiler/gcc-4.2:
- Removed support for g++ 4.2.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/compiler-public.hxx,
include/pqxx/largeobject.hxx:
- Removed workaround for broken iterator definition.
- Removed workaround for broken "using" implementation.
include/pqxx/compiler-public.hxx:
- Raised minimum Visual Studio version to the 2010 release.
- Removed tweak for old Compaq C++ for Alpha.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
README, README-UPGRADE, win32/INSTALL.txt:
- Document updated requirements.
doc/libpqxx.xml:
- Update to reflect today's C++ world.
- Freshen text a bit.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h,
configitems, configure.ac.in:
- Remove unused check for PQdescribePortal.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h:
- Remove vestigial PQXX_HAVE_PQUNESCAPEBYTEA.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h:
- Remove vestigial PQXX_HAVE_PQEXECPARAMS.
- Remove vestigial PQXX_HAVE_PQESCAPESTRING.
- Remove vestigial PQXX_HAVE_PQESCAPESTRINGCONN.
- Remove vestigial PQXX_HAVE_PQFREEMEM.
- Remove vestigial PQXX_HAVE_PQFREENOTIFY.
- Remove vestigial PQXX_HAVE_PQFTABLE.
- Remove vestigial PQXX_HAVE_PQFTABLECOL.
- Remove vestigial PQXX_HAVE_PQPREPARE.
- Remove vestigial PQXX_HAVE_PQPROTOCOLVERSION.
- Remove vestigial PQXX_HAVE_PQPUTCOPY.
- Remove vestigial PQXX_HAVE_PQRESULTERRORFIELD.
- Remove vestigial PQXX_HAVE_PQSERVERVERSION.
- Remove vestigial PQXX_HAVE_PQSETERRORVERBOSITY.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h:
- Remove vestigial PQXX_HAVE_PQESCAPEBYTEA and PQXX_HAVE_PQESCAPEBYTEACONN.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h, configitems,
configure.ac.in, include/pqxx/config.h.in, src/largeobject.cxx:
- Remove workaround for missing lo_tell().
2015-01-14 Jeroen T. Vermeulen <[email protected]>
configitems, configure, configure.ac.in, include/pqxx/config.h.in,
include/pqxx/util.hxx:
- Remove support for tr1 include directory.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4:
- Remove support for g++ 3.4.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/gcc-3.3,
config/sample-headers/compiler/gcc-3.3-apple:
- Remove support for g++ 3.3.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2008:
- Remove support for Visual Studio 2008 (still needs std::tr1).
2015-01-14 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in, include/pqxx/util.hxx:
- Remove support for obsolete std::tr1 namespace; just use std.
2015-01-14 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Remove obsolete or redundant g++ options: -ffor-scope, -fstrict-aliasing,
-Wstrict-aliasing, -funit-at-a-time, -Wmultichar, -W, -Wswitch,
-Wmissing-field-initializers.
2015-01-05 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h,
configitems, configure.ac.in, include/pqxx/config.h.in,
src/connection_base.cxx:
- Remove workaround for missing PQclientEncoding.
2015-01-05 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/compiler-internal.hxx,
include/pqxx/config.h.in, include/pqxx/cursor.hxx, include/pqxx/pipeline.hxx,
src/strconv.cxx, test/test000.cxx, test/unit/test_float.cxx:
- Remove workaround for missing limits header.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in, test/test049.cxx:
- Remove workaround for missing count_if.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h,
configitems, configure.ac.in, include/pqxx/config.h.in:
- Remove configuration for missing PQmblen().
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/libpq/8.0/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.1/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.2/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.3/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/8.4/pqxx/config-internal-libpq.h,
config/sample-headers/libpq/9.0/pqxx/config-internal-libpq.h,
configitems, configure.ac.in, include/pqxx/config.h.in,
src/connection_base.cxx, src/util.cxx:
- Remove workaround for missing PQcancel.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/SunStudio-8:
- Remove support for Sun Studio 8. It doesn't have reverse_iterator.
config/sample-headers/compiler/MinGW-3.4/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/binarystring.hxx,
include/pqxx/config.h.in, test/test062.cxx, test/test071.cxx, test/test075.cxx:
- Remove workaround for missing reverse_iterator.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-internal-compiler.h,
configitems,
configure.ac.in,
include/pqxx/config.h.in,
src/strconv.cxx,
test/test000.cxx:
- Remove workaround for missing stringstream::imbue().
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in, src/strconv.cxx,
test/test000.cxx:
- Remove workaround for missing locale header.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-public-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in,
include/pqxx/field.hxx, include/pqxx/largeobject.hxx:
- Remove workaround for missing streambuf header.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-public-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in,
include/pqxx/result.hxx:
- Remove workaround for missing ios header.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-3.3/pqxx/config-internal-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-internal-compiler.h,
configitems, configure.ac.in, include/pqxx/config.h.in,
src/transaction_base.cxx:
- Remove workaround for missing string::clear().
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-public-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure.ac.in, include/pqxx/compiler-public.hxx,
include/pqxx/config.h.in:
- Remove workaround for missing char_traits.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualC++.NET-2003,
config/sample-headers/compiler/VisualStudio2005,
config/sample-headers/compiler/gcc-2.95:
- Remove sample headers for very old compilers.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/MinGW-3.4/pqxx/config-public-compiler.h,
config/sample-headers/compiler/SunStudio-8/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualC++.NET-2003/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2005/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-2.95/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3-apple/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3-apple/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-3.3/config-public-compiler.h_strict,
config/sample-headers/compiler/gcc-3.3/pqxx/config-public-compiler.h,
config/sample-headers/compiler/gcc-4.2/pqxx/config-public-compiler.h,
configitems, configure, configure.ac, configure.ac.in, doc/Doxyfile.in,
include/pqxx/basic_connection.hxx, include/pqxx/binarystring.hxx,
include/pqxx/compiler-internal.hxx, include/pqxx/compiler-public.hxx,
include/pqxx/config.h.in, include/pqxx/connection.hxx,
include/pqxx/connection_base.hxx, include/pqxx/connectionpolicy.hxx,
include/pqxx/cursor.hxx, include/pqxx/dbtransaction.hxx,
include/pqxx/errorhandler.hxx, include/pqxx/except.hxx, include/pqxx/field.hxx,
include/pqxx/internal/gates/connection-parameterized_invocation.hxx,
include/pqxx/internal/gates/connection-pipeline.hxx,
include/pqxx/internal/gates/connection-prepare-invocation.hxx,
include/pqxx/internal/gates/connection-transaction.hxx,
include/pqxx/internal/gates/result-creation.hxx,
include/pqxx/internal/gates/transaction-tablereader.hxx,
include/pqxx/internal/gates/transaction-tablewriter.hxx,
include/pqxx/internal/gates/transaction-transactionfocus.hxx,
include/pqxx/internal/result_data.hxx,
include/pqxx/internal/statement_parameters.hxx, include/pqxx/largeobject.hxx,
include/pqxx/nontransaction.hxx, include/pqxx/notification.hxx,
include/pqxx/notify-listen.hxx, include/pqxx/pipeline.hxx,
include/pqxx/prepared_statement.hxx, include/pqxx/result.hxx,
include/pqxx/robusttransaction.hxx, include/pqxx/row.hxx,
include/pqxx/strconv.hxx, include/pqxx/subtransaction.hxx,
include/pqxx/tablereader.hxx, include/pqxx/tablestream.hxx,
include/pqxx/tablewriter.hxx, include/pqxx/transaction.hxx,
include/pqxx/transaction_base.hxx, include/pqxx/transactor.hxx,
include/pqxx/util.hxx, src/binarystring.cxx, src/connection.cxx,
src/connection_base.cxx, src/cursor.cxx, src/dbtransaction.cxx, src/except.cxx,
src/field.cxx, src/largeobject.cxx, src/nontransaction.cxx,
src/notification.cxx, src/notify-listen.cxx, src/pipeline.cxx,
src/prepared_statement.cxx, src/result.cxx, src/robusttransaction.cxx,
src/row.cxx, src/statement_parameters.cxx, src/strconv.cxx,
src/subtransaction.cxx, src/tablereader.cxx, src/tablestream.cxx,
src/tablewriter.cxx, src/transaction.cxx, src/transaction_base.cxx,
src/util.cxx, test/test000.cxx, test/test001.cxx, test/test002.cxx,
test/test004.cxx, test/test007.cxx, test/test010.cxx, test/test011.cxx,
test/test012.cxx, test/test013.cxx, test/test014.cxx, test/test015.cxx,
test/test016.cxx, test/test017.cxx, test/test018.cxx, test/test020.cxx,
test/test021.cxx, test/test023.cxx, test/test026.cxx, test/test029.cxx,
test/test030.cxx, test/test031.cxx, test/test032.cxx, test/test033.cxx,
test/test034.cxx, test/test035.cxx, test/test036.cxx, test/test037.cxx,
test/test039.cxx, test/test046.cxx, test/test048.cxx, test/test049.cxx,
test/test050.cxx, test/test051.cxx, test/test052.cxx, test/test053.cxx,
test/test054.cxx, test/test055.cxx, test/test056.cxx, test/test057.cxx,
test/test058.cxx, test/test059.cxx, test/test060.cxx, test/test061.cxx,
test/test062.cxx, test/test063.cxx, test/test064.cxx, test/test065.cxx,
test/test066.cxx, test/test067.cxx, test/test069.cxx, test/test070.cxx,
test/test071.cxx, test/test072.cxx, test/test073.cxx, test/test074.cxx,
test/test075.cxx, test/test076.cxx, test/test077.cxx, test/test078.cxx,
test/test079.cxx, test/test082.cxx, test/test083.cxx, test/test084.cxx,
test/test086.cxx, test/test087.cxx, test/test088.cxx, test/test089.cxx,
test/test090.cxx, test/test092.cxx, test/test093.cxx, test/test094.cxx,
test/test_helpers.hxx, test/test_main.hxx, test/unit/test_binarystring.cxx,
test/unit/test_cancel_query.cxx, test/unit/test_error_verbosity.cxx,
test/unit/test_errorhandler.cxx, test/unit/test_escape.cxx,
test/unit/test_exceptions.cxx, test/unit/test_float.cxx,
test/unit/test_notification.cxx, test/unit/test_parameterized.cxx,
test/unit/test_pipeline.cxx, test/unit/test_prepared_statement.cxx,
test/unit/test_read_transaction.cxx, test/unit/test_result_slicing.cxx,
test/unit/test_simultaneous_transactions.cxx, test/unit/test_sql_cursor.cxx,
test/unit/test_stateless_cursor.cxx, test/unit/test_string_conversion.cxx,
test/unit/test_test_helpers.cxx, test/unit/test_thread_safety_model.cxx,
tools/pqxxthreadsafety.cxx, tools/rmlo.cxx, win32/INSTALL.txt,
win32/common-sample, win32/mingw.mak.template, win32/vc-libpqxx.mak.template:
- Remove PGSTD namespace alias. Just use std.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
doc/libpqxx.xml, include/Makefile.am, include/pqxx/cursor.hxx,
include/pqxx/field.hxx, include/pqxx/pqxx, include/pqxx/result,
include/pqxx/result.hxx, include/pqxx/row, include/pqxx/row.hxx,
include/pqxx/tuple.hxx, include/pqxx/tuple, include/pqxx.util.hxx,
src/Makefile.am, src/field.cxx, src/result.cxx, src/row.cxx, src/tuple.cxx,
test/test001.cxx, test/test002.cxx, test/test007.cxx, test/test010.cxx,
test/test011.cxx, test/test012.cxx, test/test014.cxx, test/test016.cxx,
test/test021.cxx, test/test029.cxx, test/test030.cxx, test/test031.cxx,
test/test049.cxx, test/test067.cxx, test/test075.cxx, test/test082.cxx,
test/test092.cxx, test/test093.cxx, test/test_helpers.hxx, test/test_main.hxx,
test/unit/test_result_slicing.cxx:
- Renamed tuple to row, to avoid clashes with std::tuple.
2015-01-03 Jeroen T. Vermeulen <[email protected]>
include/pxx/compiler-public.hxx:
- Always quote #error message; fixes C++11 compile error.
2014-03-23 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Always accept "long long": the postgres header now requires it.
2014-03-15 Jeroen T. Vermeulen <[email protected]>
src/connection_base.cxx:
- Conditionally comment out Conditionally unused variable.
tools/pqxx-fulltest:
- Only care about postgres versions 8 and up.
2013-08-18 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Prefer <memory> over <tr1/memory>
- Fixes #266. Thanks Wichert Akkerman.
2013-01-17 Jeroen T. Vermeulen <[email protected]>
tools/splitconfig:
- Rewrote in python.
- Much shorter: most of the code was detecting & handling grep flavours!
- Should fix BSD build problem. Thanks Martin van den Nieuwelaar.
2013-01-17 Jeroen T. Vermeulen <[email protected]>
include/pqxx/binarystring.hxx, src/binarystring.cxx:
- C++11 fix: instantiate on non-const unsigned char. Thanks Linus Kallberg.
2013-01-12 Jeroen T. Vermeulen <[email protected]>
include/pqxx/isolation.hxx:
- Updated documentation for isolation levels.
2013-01-12 Jeroen T. Vermeulen <[email protected]>
include/pqxx/isolation.hxx:
- Support for REPEATABLE READ isolation level. Thanks pawsa.
- Fixes #259.
2013-01-12 Jeroen T. Vermeulen <[email protected]>
win32/mingw.mak.template:
- Build fix for MinGW: LIBPQPATH, not LIBPATH. Thanks Maxwell (?)
- Fixes #261.
2013-01-12 Jeroen T. Vermeulen <[email protected]>
src/strconv.cxx, test/unit/test_string_conversion.cxx:
- Some integer overflows in from_string were not detected.
- Fixes #263.
2013-01-10 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Fix w clang++ 3.0: basic C-library test broke.
2012-08-03 Jeroen T. Vermeulen <[email protected]>
src/strconv.cxx:
- Compile fix for clang++ 3.2. Thanks Amy Troschinetz.
- Fixes #253.
2012-08-03 Jeroen T. Vermeulen <[email protected]>
include/pqxx/largeobject.hxx:
- Compile fix for clang++ 3.2. Thanks Amy Troschinetz.
- Fixes #252.
2012-04-25 Jeroen T. Vermeulen <[email protected]>
configure.ac.in, debian, Makefile.am, tools/lint, tools/release:
- Removed obsolete debian and RPM packaging.
- No longer check, or update, debian/changelog for releases.
- Dropped debian directory altogether.
2012-04-04 Jeroen T. Vermeulen <[email protected]>
tools/lint, tools/pqxx-fulltest, tools/pre-release-check, tools/splitconfig:
- Mark local variables in shell functions with "local."
2012-03-25 Jeroen T. Vermeulen <[email protected]>
include/pqxx/basic_connection.hxx, include/pqxx/binarystring.hxx,
include/pqxx/connection_base.hxx, include/pqxx/connection.hxx,
include/pqxx/connectionpolicy.hxx, include/pqxx/cursor.hxx,
include/pqxx/errorhandler.hxx, include/pqxx/except.hxx,
include/pqxx/field.hxx, include/pqxx/internal/callgate.hxx,
include/pqxx/internal/gates/connection-dbtransaction.hxx,
include/pqxx/internal/gates/connection-notification_receiver.hxx,
include/pqxx/internal/gates/connection-pipeline.hxx,
include/pqxx/internal/gates/connection-transaction.hxx,
include/pqxx/internal/gates/errorhandler-connection.hxx,
include/pqxx/internal/gates/icursor_iterator-icursorstream.hxx,
include/pqxx/internal/gates/icursorstream-icursor_iterator.hxx,
include/pqxx/internal/gates/result-sql_cursor.hxx,
include/pqxx/internal/gates/transaction-transactionfocus.hxx,
include/pqxx/internal/result_data.hxx, include/pqxx/isolation.hxx,
include/pqxx/largeobject.hxx, include/pqxx/notification.hxx,
include/pqxx/notify-listen.hxx, include/pqxx/pipeline.hxx,
include/pqxx/result.hxx, include/pqxx/robusttransaction.hxx,
include/pqxx/strconv.hxx, include/pqxx/tablereader.hxx,
include/pqxx/tablestream.hxx, include/pqxx/tablewriter.hxx,
include/pqxx/transaction_base.hxx, include/pqxx/transaction.hxx,
include/pqxx/transactor.hxx, include/pqxx/tuple.hxx, include/pqxx/util.hxx,
src/binarystring.cxx, src/connection_base.cxx, src/connection.cxx,
src/cursor.cxx, src/errorhandler.cxx, src/except.cxx, src/field.cxx,
src/largeobject.cxx, src/notify-listen.cxx, src/pipeline.cxx, src/result.cxx,
src/robusttransaction.cxx, src/strconv.cxx, src/tablereader.cxx,
src/tablestream.cxx, src/tablewriter.cxx, src/transaction_base.cxx,
src/tuple.cxx, src/util.cxx, test/test000.cxx, test/test007.cxx,
test/test013.cxx, test/test018.cxx, test/test023.cxx, test/test026.cxx,
test/test032.cxx, test/test037.cxx, test/test078.cxx, test/test079.cxx,
test/test087.cxx, test/test094.cxx, test/test_helpers.hxx,
test/test_main.hxx, test/unit/test_errorhandler.cxx:
- Use noexcept instead of throw () if available (depending on compiler).
2012-03-25 Jeroen T. Vermeulen <[email protected]>
test/test002.cxx, test/test007.cxx, test/test011.cxx, test/test012.cxx,
test/test016.cxx, test/test030.cxx, test/test031.cxx, test/test049.cxx,
test/test067.cxx, test/test082.cxx, test/test093.cxx:
- C++11 fixes. Not quite there yet; NAN handling seems to have changed.
2012-03-24 Jeroen T. Vermeulen <[email protected]>
configure.ac.in:
- Check for noexcept support.
include/pqxx/compiler-public.hxx:
- Set PQXX_NOEXCEPT as compatible alias for noexcept (or empty throw spec).
2012-03-24 Jeroen T. Vermeulen <[email protected]>
include/pqxx/pipeline.hxx, include/pqxx/result.hxx, include/pqxx/tuple.hxx,
include/pqxx/util.hxx, src/pipeline.cxx, src/result.cxx, src/tuple.cxx:
- Dynamic throw specs are deprecated. Ditch the non-empty ones first.
2012-03-10 Jeroen T. Vermeulen <[email protected]>
include/pqxx/prepared_statement.hxx:
- Updated docs for prepared-statement parameters: no longer need declarations.
- Thanks Maxime van Noppen.
2012-03-10 Jeroen T. Vermeulen <[email protected]>
include/pqxx/util.hxx:
- Fixed compile error and warnings in example code.
- Thanks Martin van den Nieuwelaar and Chris Angelico.
2012-02-28 Jeroen T. Vermeulen <[email protected]>
tools/extract_version:
- Compatibility fix for OS X. Thanks Torsten Hilgenberg.
2012-01-18 Jeroen T. Vermeulen <[email protected]>
test/unit/test_prepared_statement.cxx:
- Test was brittle w.r.t. result ordering. Rewrote it.
- Thanks Jean Marie de Montarby (did I spell that right?) for the report.
2012-01-18 Jeroen T. Vermeulen <[email protected]>
include/pqxx/binarystring.hxx, include/pqxx/notify-listen.hxx,
test/test004.cxx, test/test023.cxx, test/test078.cxx, test/test079.cxx,
test/test087.cxx:
- Deprecate notify_listener.
- Deprecate binarystring (connection-unaware) escaping functions.
2011-12-03 Jeroen T. Vermeulen <[email protected]>
include/pqxx/tuple.hxx:
- Forward-declare pqxx::range_error.
- pqxx::range_error, not just range_error (problem with g++ -std=c++0x).
src/Makefile.am:
- Cosmetic.
test/unit/test_result_slicing.cxx:
- Disambiguate tuple as pqxx::tuple, not std::tuple, for C++0x.
tools/Makefile.am:
- Prevent include/pqxx from going into the include path.
- Include path was breaking #include <tuple> in C++0x standard headers!
2011-11-27 Jeroen T. Vermeulen <[email protected]>
tools/preprelease:
- Removed.
2011-11-27 Jeroen T. Vermeulen <[email protected]>
tools/sign-tarball:
- New tool.
- Creates GPG signature & hash sums for tarball.
2011-11-27 Jeroen T. Vermeulen <[email protected]>
debian/changelog:
- Real start of 4.0 series.
2011-11-27 Jeroen T. Vermeulen <[email protected]>
include/pqxx/subtransaction.hxx, src/subtransaction.cxx:
- Explicit subtransaction(subtransaction &) constructor.
- Makes it easier to nest subtransactions inside subtransactions.
- Thanks Chris Angelico for reporting the problem.
2011-11-25 Jeroen T. Vermeulen <[email protected]>
configure.ac.in, doc/Makefile.am:
- Fixed fail-if-no-doxygen logic. Really fails now.
- Also fail if xmlto is missing (and documentation build not disabled).
- Really fixes #245 (I hope).
2011-11-25 Jeroen T. Vermeulen <[email protected]>
doc/Makefile.am:
- Fail if doxygen not available (and documentation build not disabled).
- Fixes #245. Thanks Chris Angelico.
2011-11-25 Jeroen T. Vermeulen <[email protected]>
include/pqxx/performance.hxx:
- Don't mention tablestreams any more.
- Fixes #246. Thanks Chris Angelico.
2011-11-24 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection_base.hxx,
include/pqxx/internal/gates/connection-pipeline.hxx, src/connection_base.cxx:
- encoding_code() can't be "throw ()"; it calls activate().
- Crashed program when connection was lost before transaction started.
- Thanks Vasya Pupkin for reporting this with a great little test program.
2011-11-24 Jeroen T. Vermeulen <[email protected]>
include/pqxx/subtransaction.hxx:
- Fixed broken example. Thanks Chris Angelico.
2011-11-23 Jeroen T. Vermeulen <[email protected]>
win32/INSTALL.txt, win32/mingw.mak.template:
- Remove quotes that confused MinGW make.
- MinGW's make tool has a different name.
- As per patch in #244, thanks Sam Kapilivksy.
2011-11-22 Jeroen T. Vermeulen <[email protected]>
debian/libpqxx.docs, debian/libpqxx-dev.docs:
- Removed reference to old TODO file.
2011-11-22 Jeroen T. Vermeulen <[email protected]>
win32/INSTALL.txt:
- Cosmetic.
2011-11-22 Jeroen T. Vermeulen <[email protected]>
win32/INSTALL.txt:
- Documentation patch from #243. Thanks Sam Kapilivsky.
2011-11-20 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection_base.hxx, src/connection_base.cxx,
test/unit/test_errorhandler.cxx:
- Provide access to a connection's errorhandlers list.
- Fixes #242. Thanks Sam Kapilivsky for pointing out the need.
2011-11-18 Jeroen T. Vermeulen <[email protected]>
include/pqxx/errorhandler.hxx, src/notify-listen.cxx:
- Added missing #include <functional>
- Fixes #241. Thanks Sam Kapilivsky.
2011-11-16 Jeroen T. Vermeulen <[email protected]>
win32/vc-libpqxx.mak.template:
- Use debug library where appropriate, as per #238 (thanks Sam Kapilivksy).
win32/vc-test-unit.mak.template:
- Build test/unit, not test, also as per #238
2011-11-16 Jeroen T. Vermeulen <[email protected]>
win32/INSTALL.txt:
- Overhaul by Sam Kapilivsky. Thanks once again!
2011-11-14 Jeroen T. Vermeulen <[email protected]>
test/test_main.hxx:
- Workaround in create_pqxxevents for older backends without multi-insert.
2011-11-13 Jeroen T. Vermeulen <[email protected]>
autogen.sh, win32/vc-test-unit.mak.template:
- Support building of new-style unit tests on Visual C++.
- As per patch in #238; thanks Sam Kapilivsky.
win32/common-sample, win32/vc-libpqxx.mak.template,
win32/vc-test.mak.template:
- Easier Visual C++ setup.
- As per patch in #238; thanks Sam Kapilivsky.
2011-11-13 Jeroen T. Vermeulen <[email protected]>
doc/libpqxx.xml:
- Removed reference to tablestreams.
2011-11-13 Jeroen T. Vermeulen <[email protected]>
include/pqxx/tablereader.hxx, include/pqxx/tablestream.hxx,
include/pqxx/tablewriter.hxx:
- Deprecated tablestream classes (tablereader, tablewriter).
- Fixes #199, #223.
- Thanks to cuboci and Andreas Freund for pointing out the problems.
include/pqxx/transaction_base.hxx, include/pqxx/transactor.hxx,
include/pqxx/util.hxx, test/test000.cxx, test/test007.cxx, test/test010.cxx,
test/test013.cxx, test/test018.cxx, test/test020.cxx, test/test026.cxx,
test/test029.cxx, test/test032.cxx, test/test037.cxx, test/test039.cxx,
test/test066.cxx, test/test075.cxx, test/test082.cxx, test/test083.cxx,
test/test088.cxx, test/test_helpers.hxx, test/test_main.hxx:
- Create pqxxevents only on demand, locally per test (and as temporary).
- Move test coverage from deleted tests to remaining ones.
src/transaction_base.cxx:
- Removed unneeded tablestream include.
test/test005.cxx, test/test006.cxx, test/test008.cxx, test/test009.cxx,
test/test024.cxx, test/test025.cxx, test/test027.cxx, test/test028.cxx,
test/test068.cxx, test/test080.cxx, test/unit/test_tablestream.cxx:
- Deleted tablestream tests.
- No longer create permanent pqxxevents table.
test/test083.cxx:
- No longer create permanent pqxxnumbers table.
2011-11-05 Jeroen T. Vermeulen <[email protected]>
src/connection.cxx:
- Fix #232: long-standing asyncconnection bug (especially with SSL).
- Thanks again Sam Kapilivksy for tracking this down.
2011-11-05 Jeroen T. Vermeulen <[email protected]>
include/pqxx/binarystring.hxx, include/pqxx/util.hxx, src/binarystring.cxx,
src/util.cxx:
- Always free binarystring buffer using std::free().
- Fixes #227: on Windoes, must free() from same library that malloc()ed.
- Thanks Sam Kapilivsky for diagnosing the error and working out the fix.
2011-11-03 Jeroen T. Vermeulen <[email protected]>
src/connection.cxx:
- Work around compiler warning for removed PGRES_POLLING_ACTIVE in switch.
src/cursor.cxx:
- Hopefully the right fix for that Visual Studio warning this time.
- Fixes #239. Thanks Sam Kapilivsky.
2011-11-03 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2005/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2008/pqxx/config-public-compiler.h,
config/sample-headers/compiler/VisualStudio2010/pqxx/config-public-compiler.h:
- Removed PQXX_HAVE_STRERROR_R; Visual Studio has strerror_s.
- Fixes #240. Thanks Sam Kapilivsky.
2011-11-03 Jeroen T. Vermeulen <[email protected]>
src/connection.cxx:
- Removed support for obsolete PGRES_POLLING_ACTIVE.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
config/sample-headers/compiler/VisualStudio2005,
config/sample-headers/compiler/VisualStudio2008,
config/sample-headers/compiler/VisualStudio2010:
- New sample headers by Sam Kapilivksy.
include/pqxx/util.hxx, test/unit/test_thread_safety_model.cxx:
- Renamed have_strerror_r to have_safe_strerror; it's not just strerror_r.
src/util.cxx:
- Support Windows strerror_s as other safe alternative to strerror.
- Fixes #235.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
include/pqxx/util.hxx:
- Made PQAlloc contain a std::shared_ptr, not derive from it.
- As per patch in #236; fixes Visual Studio build problems.
- Thanks Sam Kapilivsky.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
test/test_helpers.hxx:
- New trick for accepting (and requiring) semicolon after PQXX_CHECK_THROWS.
- Less idiomatic, but avoids Visual Studio warning.
- Completes the fix for #231.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
include/pqxx/compiler-internal.hxx, test/test087.cxx:
- Suppress pointless Visual Studio warnings.
- Fixes most of #231; more discussion about test_helpers.hxx patch.
- Thanks Sam Kapilivsky.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
src/cursor.cxx:
- Cast around std::streamsize/icursorstream::difference_type mismatch.
- Fixes icursorstream::ignore, as per #230.
- Thanks once more Sam Kapilivsky.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
include/pqxx/compiler-internal.hxx, include/pqxx/cursor.hxx,
include/pqxx/util.hxx, test/unit/test_prepared_statement.cxx:
- Moved distance() wrapper from compiler-internal into util.
- Added some missing PQXX_LIBEXPORT directives.
- Fixes #237.
- Thanks Sam Kapilivsky for knocking the Visual Studio build into shape.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
include/pqxx/strconv.hxx:
- Add redundant string_traits<const char[N]> to keep Visual Studio happy.
- Fixes #233; thanks Sam Kapilivsky.
test/unit/test_string_conversion.cxx:
- New.
- Unit-tests string conversions (for now, only of various string types).
2011-10-31 Jeroen T. Vermeulen <[email protected]>
test/unit/test_prepared_statement.cxx:
- Fixed two Visual Studio warnings.
- Fixes #234. Thanks (you guessed it) Sam Kapilivsky.
2011-10-31 Jeroen T. Vermeulen <[email protected]>
win32/vc-libpqxx.mak.template:
- Fixed typos introduced in my application of the patch in #228.
- Should get Visual Studio build working again.
- Fixes #229. Thanks Sam Kapilivsky.
2011-10-28 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection.hxx:
- Very slight wording change; hope it's a bit clearer.
- Thanks Sam Kapilivsky for pointing this out in #222.
2011-10-28 Jeroen T. Vermeulen <[email protected]>
win32/vc-libpqxx.mak.template, win32/vc-test.mak.template:
- The rest of the patch in #228. Thanks Sam Kapilivsky.
2011-10-28 Jeroen T. Vermeulen <[email protected]>
test/test000.cxx, test/test002.cxx, test/test060.cxx, test/test061.cxx,
test/test062.cxx, test/test064.cxx, test/test071.cxx, test/test075.cxx:
- Removed unneeded headers as per #228 (though it has more changes).
- Thanks Sam Kapilivsky for the patch.
2011-10-17 Jeroen T. Vermeulen <[email protected]>
test/test051.cxx:
- Work around problem with Visual C++ 2010. Should fix #225.
- Thanks Sam Kapilivsky.
2011-10-16 Jeroen T. Vermeulen <[email protected]>
src/connection_base.cxx:
- Fix gcc warning.
2011-10-16 Jeroen T. Vermeulen <[email protected]>
win32/vc-test.mak.template:
- Fix build on Visual C++ 2010. Fixes #226. Thanks Sam Kapilivsky.
2011-10-11 Jeroen T. Vermeulen <[email protected]>
src/connection_base.cxx:
- Fixed compile errors on gcc 3.3.
2011-10-07 Jeroen T. Vermeulen <[email protected]>
include/pqxx/connection_base.hxx, include/pqxx/connection.hxx,
src/connection_base.cxx, test/test013.cxx, test/test018.cxx,
test/test032.cxx, test/test037.cxx, test/test056.cxx, test/test060.cxx,
test/test061.cxx, test/test064.cxx, test/test070.cxx, test/test072.cxx,
test/test073.cxx, test/test083.cxx, test/test086.cxx,
test/unit/test_errorhandler.cxx:
- Removed remaining references to noticer.
- Made all remaining noticer support conditional on auto_ptr.
2011-10-07 Jeroen T. Vermeulen <[email protected]>
include/pqxx/errorhandler.hxx:
- Forgot PQXX_LIBEXPORT. Thanks Kirit Saelensminde.
2011-10-06 Jeroen T. Vermeulen <[email protected]>
include/pqxx/basic_connection.hxx, include/pqxx/robusttransaction.hxx,
include/pqxx/transaction.hxx, src/connection_base.cxx, src/largeobject.cxx,
src/notification.cxx, src/pipeline.cxx, src/tablereader.cxx,
src/tablewriter.cxx, src/transaction_base.cxx:
- Updated "quiet destructors" to use quiet_errorhandler.
- Fixes #224. Thanks Kirit Saelensminde for testing this when asked.
2011-10-06 Jeroen T. Vermeulen <[email protected]>
src/connection_base.cxx:
- Refuse to escape "tricky" identifier without PQescapeIdentifier.
- Fixes remaining issue with #221. Thanks Andreas Freund.
2011-10-06 Jeroen T. Vermeulen <[email protected]>
include/Makefile.am, include/pqxx/binarystring.hxx,
include/pqxx/internal/gates/connection-parameterized-invocation.hxx,
include/pqxx/internal/gates/connection-prepare-declaration.hxx,
include/pqxx/internal/gates/connection-prepare-invocation.hxx,
include/pqxx/internal/gates/connection-transaction.hxx,
include/pqxx/internal/statement_parameters.hxx,
include/pqxx/prepared_statement.hxx, include/pqxx/transaction_base.hxx,
src/binarystring.cxx, src/connection_base.cxx, src/prepared_statement.cxx,
src/statement_parameters.cxx, src/transaction_base.cxx, test/test092.cxx,
test/unit/test_prepared_statement.cxx:
- Require server version 8.0 or better.
- Require backend protocol 3 or better.
- No longer need to declare parameter lists for prepared statements.
- Same for parameterized statements.
- binarystring can now also come from a std::string, or {void *, size_t}.
- To produce a binary parameter, simply pass a binarystring.
- No longer need connection-prepare-declaration call gate.
2011-10-05 Jeroen T. Vermeulen <[email protected]>
configure/sample-headers/libpq/7.3, configure/sample-headers/libpq/7.4:
- Removed.
configitems, configure.ac.in, include/pqxx/field.hxx,
include/pqxx/result.hxx, include/pqxx/tuple.hxx, include/pqxx/util.hxx,