forked from pgadmin-org/pgadmin3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
2266 lines (2258 loc) · 142 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
pgAdmin III Changelog
=====================
Notes
-----
This is the pgAdmin III changelog. Items are marked with the initials of the
developer responsible for them, and the version of pgAdmin that the change
will first appear in. For convenience, changes during Beta and RC phases may
include an RCx or Bx suffix on the version number, but for simplicity these
will not normally be retained.
A name in square braces [Joe Bloggs] indicates that the change was written by
Joe. The initialed developer was responsible for reviewing the changes in these
cases.
Names shown as "per Joe Bloggs", indicate that Joe reported the problem and may
have provided help debugging it, but did not actually provide the change.
Key to developers
-----------------
- DP Dave Page
- AP Andreas Pflug
- JMP Jean-Michel Poure
- HS Hiroshi Saito
- AHP Adam H. Pendleton
- MP Marc Persuy
- DAP Darko Prenosil
- FGP Florian G. Pflug
- MH Magnus Hagander
- GL Guillaume Lelarge
- AV Ashesh Vashi
Changes
-------
Date Dev Ver Change details
---------- --- ------ --------------
2016-06-13 DP 1.22.2 Include the Negator when reverse engineering SQL for
operators [Julien Rouhaud]
2016-03-22 DP 1.22.2 Fix the psql plugin command on OSX to work more
reliably [Nicola Vitacolonna]
2016-02-16 DP 1.24.0 Allow multiple SQL editor tabs to be used in the
query tool [Sergey Busel]
2016-02-16 DP 1.22.2 Prevent a crash in some situtions where the database
connection is lost and needs to be reset.
2016-02-11 DP 1.22.2 Fix display of elapsed query time for queries running
longer than 1 hour [Иван Полещук]
2016-02-08 DP 1.22.1 Don't barf when connecting to Greenplum or Greenplum
HAWQ [Andreas 'ads' Scherbaum]
2016-02-01 DP 1.22.1 Fix selection of conversion functions in the CREATE
CONVERSION dialogue [Dmitry Voronin]
2016-02-01 DP 1.22.1 Properly quote type names in the Type dialogue, and
ensure range information is displayed for existing
types [Akshay Joshi]
2016-01-19 DP 1.22.1 Fix selection of cast functions in the Cast dialogue
[Sanket Mehta]
2016-01-04 AV 1.22.0 Resolved an issue related to check options selection in
the view properties dialog with the check option.
[Reported by: Sebastian Albert, Patched by: Neel Patel]
2015-12-08 AV 1.22.0 Merged the libssh2 to the latest version.
[Akshay Joshi]
2015-11-19 DP 1.22.0 Properly detect serial columns as such when
identifiers have been truncated.
2015-10-23 AV 1.22.0 Fixes an issue related to the column inheritance
information properly, when one (or, more) common columns
are inherited from multiple tables.
[Reported by: Liu Yuanyuan, Patched by: Akshay Joshi]
2015-10-12 AV 1.22.0 Ensure the correct syntax used for moving the objects
from one tablespace to another. [Sanket Mehta]
2015-10-07 DP 1.22.0 Ensure the correct line endings are used when copying
from the SQL Pane [Nikolai Zhubr]
2015-09-25 AV 1.22.0 Toolbar icons, and menu items for Commit and Rollback
actions. [John Obaterspok]
2015-09-24 DP 1.22.0 Display the connection details for the current browser
object in the status bar [Adam Scott]
2015-09-21 AV 1.22.0 Fixed an issue related to different menus enabling in
the Query Tool on Ubunutu unity.
[Reported by: Vahdet Mert]
2015-09-21 AV 1.22.0 Reset the position (x, y) for dialog(s), and frame(s) to
0 (if found negative), while saving its position and
size. [Reported By: Mark, Patch: Sanket Mehta,
Reworked, and Reviewed: Ashesh]
2015-09-21 AV 1.22.0 Fixes an issue identifying the return type to TABLE in
some cases, using pg_get_function_result(..) for the
same instead of format_type(..)
[Reported By: Guillermo E. Villanueva,
PATCH:Sanket Mehta]
2015-09-21 AV 1.22.0 Honour PGPASSFILE environment variable for saving,
retrieving the password instead of always works with
pgpass.conf (on windows)/.pgpass (on non-windows)
[PATCH: Prasad Somwanshi, Reworked by: Sanket Mehta,
Reviewed by: Ashesh Vashi, Sanket Mehta]
2015-09-14 AV 1.22.0 Fix a segfault occurs while detecting transaction
section requirement, when autocommit has been disabled.
[Reported by John Obaterspok, Patch by Sanket Mehta]
2015-09-14 AV 1.22.0 Format execution time in a more readable manner
[John Obaterspok]
2015-07-27 AV 1.22.0 Improve sorting in Data editor
[J. F. Oster, Reviewed by Sanket Mehta]
2015-07-27 AV 1.22.0 Allow to format the selecte SQL using external tools
in Query Editor [J. F. Oster]
2015-05-22 AV 1.22.0 Allow to set auto-commit mode to on/off in the query
editor [Sanket Mehta]
2015-04-22 AV 1.20.1 Do not try unlock the mutex, which was not owned by the
thread, while creating the popup menu [Wander Nauta]
2015-04-20 AV 1.22.0 Set the focus on browser tree windows on startup
[J.F. Oster]
2015-03-10 AV 1.22.0 Make the arrow key navigation consistent across all
platform on the object browser tree [Prasad]
2015-03-10 AV 1.22.0 Show indexes for the materialized views in Query pane
[Dmitriy Olshevskiy]
2015-03-10 AV 1.22.0 Add support for searching materialized views in the
"Search Objects" dialog [Dmitriy Olshevskiy]
2015-03-10 AV 1.20.1 Resolved an assertion error during opening the popup
menu for plugins on wxWidgets 3.0 [Prasad]
2015-02-25 DP 1.21.0 Ensure the OK button is enabled on the Add Server dialog
following a connection failure [Prasad]
2014-11-28 AV 1.20.0 Resolving the inconsistency of preservation of modified
information of the columns, while adding/editing a table
from the table dialog [Reported by Jasmine Liu, Patch
from Sanket Mehta, and reviewed by Akshay Joshi and me]
2014-11-22 GL 1.20.0 Add missing nodes to graphical explain plan [J.F. Oster]
2014-11-03 AV 1.20.0 Fix the Resource Groups dialog - separated the
statements, which can not be ran in single transaction
[Akshay Joshi]
2014-10-28 AV 1.20.0 Support for Slony-I 2.2+ with PostgreSQL 9.3+
[Neel Patel, Akshay Joshi, Sanket Mehta, Ashesh Vashi]
2014-10-28 AV 1.20.0 Support smallserial columns in Edit Data Window
[J.F. Oster]
2014-10-28 AV 1.20.0 Restore the user specified size on the grid (which
contains the result) in Query windows to fix an issue
related to the column size is too narrow on subsequent
Explain execution [J.F. Oster]
2014-10-28 AV 1.20.0 Empty the Undo/Redo history everytime new file is opened
[J.F. Oster]
2014-10-28 AV 1.20.0 Added accelerator F8 for 'Execute to file' in the Query
window [Mads Jensen]
2014-10-28 AV 1.20.0 Beautify the query shown in the SQL pane for the
functions having multiple arguments by adding new lines
with small modification by me [J.F. Oster]
2014-10-13 AV 1.20.0 Check for the columnlist for the UPDATE OF syntax on
trigger also works with PPAS 9.5+ [Sanket Mehta]
2014-09-27 AV 1.20.0 Proper saving of columns width in the server status
window [Dmitriy Olshevskiy]
2014-09-19 DP 1.20.0 Fix support for triggers with inline code on PPAS
[Sanket Mehta]
2014-08-09 AV 1.20.0 CHECK OPTION is applicable to the views only, and not
the materialized views
2014-08-09 GL 1.20.0 Prevent a crash during the update of the macro or
favourite list [Dmitriy Olshevskiy]
2014-07-20 AV 1.20.0 Allow quick injectection of favourites by name
[J.F. Oster]
2014-07-20 AV 1.20.0 Fix handling of saving macros after pasting a query in
the box [Dmitriy Olshevskiy]
2014-07-14 GL 1.18.2 Fix SQL for GRANT on a sequence. Report from
liuyuanyuan.
2014-07-03 DP 1.20.0 Fix handling of char()[] columns in the Edit Grid
[Dmitriy Olshevskiy]
2014-07-02 GL 1.20.0 Support the new check_option parameter of views
2014-07-02 GL 1.20.0 Handle the 9.4 MOVE clause of ALTER TABLESPACE
2014-07-02 GL 1.20.0 Add a new action menu to refresh a materialized view
2014-07-02 GL 1.20.0 Support the new 9.4 columns in pg_stat_activity
2014-06-27 DP 1.20.0 Save search options for next time [Dimitriy Olshevskiy]
2014-06-25 DP 1.20.0 Ensure Favourite queries are only saved when the OK
button is pressed [Dmitriy Olshevskiy]
2014-06-18 DP 1.20.0 Fix an issue refreshing functions in PPAS packages
[Akshay Joshi]
2014-06-18 DP 1.20.0 Improve handling of lost connections [Ashesh Vashi]
2014-06-12 DP 1.20.0 Allow searching for database objects by comment and
definition content [J.F. Oster]
2014-06-10 DP 1.20.0 Add support for Resource Groups in PPAS 9.4 [Akshay
Joshi]
2014-06-07 DP 1.20.0 Add Save and Exit shortcut keys to the edit grid
[Fredrik de Vibe]
2014-05-28 DP 1.18.2 Fix escape handling in pgpass files [Akshay Joshi]
2014-05-04 GL 1.18.2 GQB forgot the materialized views. Report from Eduard
Szöcs.
2014-02-13 AV 1.20.0 Enable backward search in SQL Box using Shift + F3
[J.F. Oster]
2014-03-07 AV 1.18.2 Don't set log_min_messages from the debugger
2014-03-07 AV 1.18.2 Fix a crash on OSX when run explain through shortcut in
query editor, when mouse is over a existing shape, and
popup, showing the step information, is on. Report from
Attila Soki
2014-02-26 AV 1.18.2 Using the GetOid() function instead of GetLong() for
Oid columns [Ian Barwick]
2014-02-13 DP 1.20.0 Allow more flexible selection/deselection of rows and
columns in Edit Grid [J.F. Oster]
2014-02-12 GL 1.20.0 Allow more options with the plain backup.
2014-02-11 DP 1.18.2 Fix SQL comments for inherited columns [J.F. Oster].
2014-01-27 AV 1.18.2 Flush the changes in the settings as soon as new server
is added [Kaarel Moppel]
2014-01-27 DP 1.18.2 Don't include obsolete config settings from <= 8.3 in the
config editor unless running on an appropriate server.
[Neel Patel].
2013-12-16 DP 1.20.0 Use a much smarter auto-sizing algorithm for the columns
in the Query Tool output grid [J.F. Oster].
2013-12-06 DP 1.20.0 Remember the last panel used on the Options dialogue,
and display the default panel if a group node is
selected on the tree [J.F. Oster]
2013-12-06 DP 1.18.2 Ensure the Type dialogue detects name changes [Timon].
2013-12-06 DP 1.18.2 Ensure report titles don't overflow the page width
[Dhiraj Chawla]
2013-11-25 DP 1.18.2 Ensure reports overflow the page width properly [Akshay
Joshi]
2013-11-20 DP 1.18.2 Add missing "port" option for SSH tunnels [Akshay Joshi].
2013-11-18 AV 1.18.2 Set 32bit PostgreSQL, EnterpriseDB PATH (in case - 64bit
respective applications not found, and 32bit(s) are
available) for 64bit pgAdmin III [Dinesh Kumar].
2013-10-22 AV 1.18.2 Improved the debugger to work better with PPAS <= 9.2
2013-10-22 DP 1.18.2 Fix the handling of the "Valid Until" date/time on the
role dialogue on Mac [Dinesh Kumar].
2013-10-13 GL 1.20.0 Allow parallel dump with -j starting with 9.3
2013-09-29 GL 1.18.1 Allow the dump of pg<something> schemas.
2013-09-26 DP 1.18.1 Prevent a crash on Windows when dropping a column or a
constraint on a table [Dhiraj Chawla]
2013-09-26 DP 1.18.1 Ensure DDLScript will work with Slony 2.2+ which has a
new SQL level API [Neel Patel]
2013-09-26 DP 1.18.1 Fix ordering of object types in the display options and
add Event Triggers which were missing [Dhiraj Chawla].
2013-09-21 AV 1.18.1 Ensure the debugger can cope with functions that have an
OUT parameter as the first.
2013-09-19 DP 1.18.1 Fix the quoting of user mapping objects [Dinesh Kumar]
2013-09-19 DP 1.18.1 Ensure that materialised views are available as targets
for synonyms [Neel Patel]
2013-09-19 DP 1.18.1 Fix the query used to find tables in a Slony
replication set [Neel Patel]
2013-09-11 DP 1.18.1 Prevent a crash if a user starts an external process
such as a backup, and then immediately hits cancel
[Neel Patel].
2013-09-06 DP 1.18.1 Fix a memory leak in the Event Trigger code [Dinesh
Kumar].
2013-08-20 AV 1.18.0 Fix a layout bug in the graphical explain renderer that
could render nodes on top of each other.
2013-08-06 DP 1.18.0 Fix Slony's DDL Script support [Akshay Joshi].
2013-07-26 DP 1.18.0 Add support for Event Triggers in 9.3+ [Dinesh Kumar].
2013-07-22 DP 1.18.0 Avoid using a Help cache file that needs to be world
writeable, and ensure sed is happy when post-processing
helpfiles.
2013-07-22 DP 1.18.0 Fix the help path on the import dialogue and improve the
error handling [Akshay Joshi].
2013-07-22 DP 1.18.0 Fix path the the Search Objects help doc [Dhiraj Chawla].
2013-07-18 GL 1.18.0 Fix UTF-8 display for guru hints [Marek Cernocky].
2013-07-08 DP 1.18.0 Prevent a crash when creating a stored procedure in
PPAS [Dinesh Kumar].
2013-06-19 GL 1.18.0 Disable the Favourites menu items if there is no
favourites file path (per a comment from Michael Shapiro).
2013-06-18 GL 1.18.0 Make No the default button on the Truncate confirmation
dialog (per request from Humberto Cereser Ibanez).
2013-06-18 DP 1.18.0 Support Materialized Views [Neel Patel].
2013-06-07 DP 1.18.0 Avoid a possible crash on Linux when using the
"Script" options of the Query Tool [aditsu].
2013-05-26 DP 1.18.0 Fix comments on constraints [Thom Brown].
2013-05-26 DP 1.18.0 Fix schema prefixes in cast definitions in the browser.
2013-05-26 DP 1.18.0 Treat sequences as first class objects in the Grant
Wizard. Support USAGE and remove obsolete RULE
permissions [Dhiraj Chawla].
2013-05-26 DP 1.18.0 Set the default backup type to "Custom".
2013-05-21 DP 1.18.0 Improve the copy handling on the Edit Grid so that
it works more consistently and predictably.
2013-05-20 DP 1.18.0 Fix comments on columns.
2013-05-20 DP 1.18.0 Remove the "Apply" buttons from the function, view
package and external table dialogues. Their use is
discouraged, and the code is fragile, complex and
very buggy.
2013-05-20 DP 1.18.0 Fix a crash that could occur if the browser fails to
detect that an object has been changed by another
session.
2013-05-17 DP 1.18.0 Change the default SQL box font to a slightly smaller
size on GTK based platforms.
2013-05-17 DP 1.18.0 Don't prompt the user for a password if they're using
a client certificate.
2013-05-17 DP 1.18.0 Ensure global backups use the mintenance database to
avoid access issue with postgres or template1.
2013-05-17 DP 1.18.0 Fix SSL certificate authentication.
2013-05-08 DP 1.18.0 Fix renaming and schema changes for stored procedures
in PPAS [Dinesh Kumar].
2013-05-02 DP 1.18.0 Add SSH tunnelling support to allow connections to be
made to hosts via an SSH server [Akshay Joshi].
2013-05-02 DP 1.18.0 Display the index validity in the properties list for
indexes and index-based constraints [Gabrielle Roth].
2013-04-29 DP 1.18.0 Add an option to include column headers when copying
from the query tool results [Jasmin Dizdarevic].
2013-04-29 DP 1.18.0 Allow the decimal mark displayed by the query tool to be
configured as the thousands separator can [Jasmin
Dizdarevic].
2013-04-25 DP 1.18.0 Ensure the Query Tool's maximum column length setting
is honoured.
2013-04-22 DP 1.18.0 Handle default privileges to PUBLIC correctly. [Dhiraj
Chawla].
2013-03-24 GL 1.18.0 Add tab option in the Import dialog. Per a request from
Jeff Janes.
2013-03-17 GL 1.18.0 Add smallserial handling. Per a request from Matthew
Syphus.
2013-03-01 DP 1.18.0 Fix the editing of pg_hba.conf files [Dhiraj Chawla].
2013-02-25 DP 1.18.0 Fix the display of extension owner names.
2013-02-23 GL 1.18.0 Add a title to the backup and restore windows. Per
request from Bastiaan Olij.
2013-02-22 DP 1.18.0 Fix a bug that could cause a NOTICE to be displayed
when rendering FTS Configurations in the tree.
2013-02-07 DP 1.18.0 Don't try to display dependents or dependencies for
pgAgent jobs, schedules or steps.
2013-02-06 DP 1.18.0 Fix the handling of expiry times when modifying roles.
2013-02-04 DP 1.18.0 Prevent foreign keys being recreated unnecessarily when
modifying tables [Michael Banck]
2013-01-24 DP 1.18.0 Prevent Cmd+S adding characters to the Query Tool when
the Save button is disabled.
2013-01-18 DP 1.18.0 Fix handling of Greenplum partitions [Lubomir Petrov]
2013-01-06 GL 1.18.0 Add -V/--version CLI option.
2013-01-06 GL 1.18.0 Add actions menu to the serverstatus tool.
2013-01-06 GL 1.18.0 Fix the database SQL when reseting a configuration
parameter. Per a report from Bartosz Dmytrak.
2013-01-04 GL 1.18.0 Refresh the toolbar buttons when a list has been
updated. Per a report from Evan Martin.
2013-01-04 GL 1.18.0 Fix the "NO INHERIT" query. Report from Thomas Joseph.
2012-12-24 GL 1.18.0 Display default privs. Report from Nathan Alden.
2012-12-24 GL 1.18.0 Sort references by schema name and relation name in
dlgForeignKey. Report from Michal Kozusznik.
2012-12-24 GL 1.18.0 Fix the change of the superuser attribute. Report from
Michal Kozusznik.
2012-12-18 DP 1.18.0 Prevent a crash when using Cmd-A on a file loaded into
the Query Tool when opened with Cmd-E on Mac.
2012-12-07 DP 1.18.0 Fix the queries used to get object comments to allow
for duplicate OIDs that may be present following use
of pg_upgrade.
2012-12-03 DP 1.16.1 Prevent a crash that could happen if further changes
were made on a dialogue after using the Apply button.
[Akshay Joshi]
2012-11-29 GL 1.16.1 Save new comments on already existing columns when
editing a table. Per a report from Jeff Janes.
2012-11-29 GL 1.16.1 Fix the query editor behaviour when executing COPY TO
stdout and COPY FROM stdin [Heikki Linnakangas]
2012-11-28 AV 1.16.1 Date picker controls returns a full timestamp by
default, which can cause inadvertent date changes
on jobs and role validty dates. Ignore the time part.
2012-11-26 MH 1.16.1 Fix query for database descriptions
2012-11-15 DP 1.16.1 Avoid querying the catalogs for toast table settings
for every table in the database. This gives a huge
performance gain with large schemas.
2012-11-08 DP 1.16.1 Prevent a crash when refreshing a node which has a
child with an open dialogue [Dhiraj Chawla]
2012-11-08 DP 1.16.1 Fix dropping/renaming of indexes [Akshay Joshi]
2012-11-08 DP 1.16.1 Avoid updating the GQB model on every key press in
the query tool [Dhiraj Chawla]
2012-11-02 DP 1.16.1 Fix a crash that can occur when renaming objects.
[Ashesh Vashi/Sachin Srivastava]
2012-11-01 DP 1.16.1 Fix dropping of constraints [Akshay Joshi]
2012-10-31 DP 1.16.1 Fix the "blocked by" column in the server status
dialogue on 9.2 servers [Sachin Srivastava]
2012-10-11 DP 1.16.1 Prevent a crash if the query tool is closed whilst a
file is loading [Akshay Joshi]
2012-10-09 AV 1.16.1 Fix setting of comments on PPAS procedures.
2012-10-08 DP 1.16.1 Don't autosize the search results columns if no
results are found [Akshay Joshi]
2012-10-08 AV 1.16.1 Prevent a crash if opening a second config file in
the editor.
2012-10-08 DP 1.16.1 Prevent the SSL options combo box displaying
duplicate options if the server dialogue is
reopened [Akshay Joshi]
2012-09-14 GL 1.16.1 Fix trigger query when connected to PostgreSQL 8.2 or
lower, per a report from Jon Roberts.
2012-09-12 GL 1.16.1 Fix message when executing an empty query, per Marc
Mamin.
2012-09-06 DP 1.18.0 Detect serial/bigserial columns from pg_depend, rather
than guessing [Quan Zongliang].
2012-09-05 DP 1.18.0 Display the next expected value for a sequence in the
property list [Quan Zongliang].
2012-07-11 MH 1.18.0 Add optional thousands separator to the query tool
results grid.
2012-07-11 MH 1.18.0 Right-justify numeric values in the query tool results
2012-06-19 GL 1.14.4 Fix constraint triggers SQL, per multiple complaints.
2012-05-08 GL 1.16.0 Add privilege support on aggregates.
2012-05-07 GL 1.14.3 Don't reset breakpoints when folding code [Heikki
Linnakangas].
2012-05-07 GL 1.14.3 Fix crashes by limiting the size of explainPopup.
2012-05-05 GL 1.16.0 Add inline function support on languages.
2012-05-01 GL 1.14.3 Various fixes on indexes, per Colin Beckingham.
2012-04-30 GL 1.14.3 Fix constraint triggers SQL, per Michael Brux.
2012-04-29 GL 1.16.0 Add support for range types.
2012-04-28 GL 1.16.0 Add support for setting db/user config on dlgRole.
2012-04-26 DP 1.14.3 Fix line offsets in the debugger when used with 9.1
servers [Heikki Linnakangas].
2012-04-24 DP 1.14.3 Fix domains over array types [Thom Brown].
2012-04-18 GL 1.14.3 Fix SQL query to get types for function return and
arguments. Per a report from Erwin Brandstetter.
2012-04-17 GL 1.14.3 Fix RE of options in foreign tables. Report from Regina.
2012-04-16 AV 1.14.3 Fix handling of parameter handling for edbspl functions
and package procedures/functions.
2012-04-10 AV 1.14.3 Fix server reconnect option when the browser becomes
disconnected from the server.
2012-04-08 GL 1.16.0 Move references table textbox to the third tab in
dlgForeignKey. Per request from Colin Beckingham.
2012-04-05 GL 1.16.0 Support for the new two columns in 9.2 pg_stat_database
2012-04-04 GL 1.14.3 Fix the SQL when adding a new index without a name,
but with a comment or a CLUSTER. Per report from
Bartosz Dmytrak.
2012-03-23 GL 1.14.3 Fix the reverse-engineered SQL for SQL/MED server. Per
report from Bartosz Dmytrak.
2012-03-20 GL 1.14.3 Drop autovacuum ANALYZE parameters for TOAST tables.
Per report from Bartosz Dmytrak.
2012-03-18 GL 1.14.3 Fix deleting lines in frmEditGrid with 64bit systems
[Steven Elliott]
2012-03-13 GL 1.14.3 Fix the reverse-engineered SQL of an operator. Per
report from Bartosz Dmytrak.
2012-03-13 DP 1.14.3 Fix handling of DEFAULT ACLs in the restore dialog
[Dharmendra Goyal]
2012-03-12 GL 1.16.0 Support for renaming constraints (9.2).
2012-03-10 GL 1.14.3 Fix the restore of a window position when using
multiscreen. Per report from Steffen Decker.
2012-03-10 GL 1.14.3 Fix the SQL when a user changes a trigger. Per report
from Bartosz Dmytrak.
2012-03-06 GL 1.14.3 Make sure that queries use LIKE with _ escaped.
2012-03-06 GL 1.14.3 Fix enabling the OK button of the view dialog. Per
report from Colin Beckingham.
2012-03-05 GL 1.14.3 Fix the trigger SQL. Per report from Attila.
2012-03-02 GL 1.16.0 Fix wxWidgets 2.9 compatibility with pgAdmin on Linux
[Akshay Joshi].
2012-03-01 GL 1.14.3 Another fix on the autovacuum widgets in the table
dialog. Report from Bartosz Dmytrak.
2012-02-29 GL 1.14.3 Fix setting the connection for pgScript, per report
from Charles Gutjahr.
2012-02-28 GL 1.14.3 Extensions have no owner. Per report from James B.
Byrne.
2012-02-28 GL 1.14.3 Fix the handling of empty strings in the histoqueries
file. Per report from Bartosz Dmytrak.
2012-02-23 GL 1.16.0 New import tool.
2012-02-21 GL 1.14.2 Fix the SQL for existing triggers, per report from
Bartosz Dmytrak.
2012-02-21 GL 1.14.2 Fix the SQL for existing extensions.
2012-02-20 GL 1.14.2 Correctly save the position of a pgDialog.
2012-02-19 GL 1.14.2 Fix the copy of a query when application_name is unset.
2012-02-19 GL 1.14.2 Fix query handling on the frmStatus window,
per report from Aren Cambre.
2012-02-16 GL 1.14.2 Record a password in .pgpass only if not empty.
Per complaint from Michael Shapiro, and Vik Reykja.
2012-02-15 GL 1.16.0 Support for the LEAKPROOF option in functions.
2012-02-13 GL 1.14.2 Fix the reverse-engineered SQL for types.
2012-02-13 GL 1.16.0 Support ANALYZE, CATEGORY, and PREFERED items for
CREATE TYPE statement.
2012-02-11 GL 1.16.0 Support CREATE TABLE LIKE.
2012-02-11 GL 1.14.2 Fix dlgType minimum size.
2012-02-11 GL 1.14.2 Fix enabling/disabling trigger with the trigger
contextual menu. Report from Bartosz Dmytrak.
2012-02-09 GL 1.16.0 Support for the new TIMING option in EXPLAIN ANALYZE.
2012-02-09 GL 1.14.2 Fix the autovacuum widgets in the table dialog when
using a language other than english. Report from
Bartek.
2012-02-06 GL 1.14.2 Highlight the log pane widgets at the frmStatus startup.
2012-01-26 GL 1.16.0 Support for the new three columns in 9.2 pg_stat_database
2012-01-22 GL 1.16.0 Use date_trunc to skip the microseconds part of all
timestamp fields in frmStatus.
2012-01-22 GL 1.16.0 Support new/changed pg_stat_activity fields.
2012-01-18 DP 1.14.2 Ensure job steps and schedules are listed properly
on the Job dialogue, and avoid defaulting empty
end dates to today on the schedule dialogue.
2012-01-13 DP 1.14.2 Fix the default column widths of the list controls
on the main window on Linux [Dhiraj Chawla]
2012-01-13 DP 1.14.2 Increase the size of the label on the password
dialog to avoid text being obscured with longer
server descriptions [Dharmendra Goyal]
2012-01-11 DP 1.14.2 Fix the "drop object?" warning on Slony objects and
PPAS synonyms [Dhiraj Chawla].
2012-01-10 DP 1.14.2 Fix comment modification on Slony Clusters [Akshay
Joshi]
2012-01-08 GL 1.16.0 Allow renaming a domain.
2012-01-07 GL 1.16.0 Add subitems to the schemas and catalogs in GQB.
Request from Colin Beckingham.
2012-01-07 GL 1.14.2 Fix loss of column changes through table properties
when re-editing. Report from Thom Brown.
2012-01-07 GL 1.14.2 Show columns' variable in the SQL pane of a table.
Report from Thom Brown.
2012-01-06 GL 1.14.2 Fix the refresh on frmMain. Per report from Bartek.
2012-01-05 GL 1.16.0 Support for privileges on types.
2012-01-05 GL 1.16.0 Support section options for pg_dump/pg_restore.
2012-01-04 GL 1.14.2 Fix the constraint trigger query.
2012-01-03 GL 1.16.0 Add security_barrier option handling for views.
2011-12-19 DP 1.16.0 Add an "New Folder" button to the "Add Favourite" dialog
in the query tool [Dhiraj Chawla]
2011-12-13 GL 1.14.2 Allow SSL use.
2011-12-12 GL 1.16.0 Support for the new sslcompression connection option.
2011-12-11 GL 1.16.0 Add renaming of FDW and Server objects.
2011-12-10 GL 1.14.2 Fix reading the histoquery file because of wrong file.
2011-12-10 GL 1.16.0 Support for TRUNCATE permission
2011-12-10 GL 1.14.2 Fix constraints handling on the table properties
dialog, per report from Vjacheslav Vjacheslav.
2011-12-06 DP 1.14.2 Avoid crashing when working with objects with % in the
name.
2011-12-04 GL 1.14.2 Fix VARIADIC handling with DEFAULT value, per
report from Regina.
2011-12-04 GL 1.14.2 Fix DEFAULT clause handling in ALTER FUNCTION, per
report from Regina.
2011-12-04 GL 1.14.2 Fix compilation on Debian Sid, per report from
Philippe Rimbault, and Gerfried Fuchs.
2011-12-02 AV 1.14.2 Fix handling of EXTENSIONs in the restore dialogue.
2011-11-03 GL 1.14.1 Fix cache type lookup. Per report from Boris Pezzati.
2011-10-28 GL 1.14.1 Fix constraint trigger definition, per report from Erika.
2011-10-24 GL 1.14.1 Set correctly focus on the browser when connection is
done. Per report from Henry Drexler.
2011-10-24 GL 1.14.1 Foreign table's columns weren't quoted. Report from
Pasman Pasmanski.
2011-10-24 GL 1.14.1 Rows in Query Output pane fail to grow in height when
font size preference size is larger. Report from Basil
Bourque.
2011-09-19 GL 1.14.1 Fix the removing of an inherited table.
Report from Pasman Pasmanski.
2011-09-12 GL 1.14.1 Fix backup of shared objects, and of all databases.
Report from Adrian Heath.
2011-09-10 GL 1.14.1 Fix dropping a constraint in the table properties dialog.
[P Gouv]
2011-09-10 GL 1.16.0 Reverse engineering in the database designer.
Patch from Luis Ochoa with some fixes by me.
2011-09-08 DP 1.14.0 Fix pasting in the Edit Grid to avoid tacking garbage
onto the end of the last cell if too many fields are
pasted [Robins Tharakan].
2011-09-04 GL 1.16.0 Highlight the other brace even if the current one is
before the caret (request from Andreas).
2011-08-24 DP 1.16.0 Add options to refresh objects automatically when
clicked [Vinicius Santos]
2011-08-15 GL 1.16.0 Redesign frmOptions.
2011-08-11 GL 1.16.0 Prevents dropping connection, dropping or refreshing
object when a properties dialog is open.
2011-08-11 GL 1.16.0 Support for multimodels diagram in the database
designer. Patch from Luis Ochoa with some fixes by me.
2011-08-07 GL 1.16.0 Implement enable/disable save button, on text change.
Patch from Vinicius Santos.
2011-07-25 GL 1.16.0 Change doc build system.
2011-07-25 GL 1.16.0 Support for security labels on global/shared objects
(9.2 feature).
2011-07-25 GL 1.16.0 Support for security labels on local objects (9.1
feature).
2011-07-25 GL 1.16.0 Support for non valid domains, and check constraints
(9.2 feature).
2011-07-25 GL 1.16.0 Add load/save support for the Database Designer. Patch
from Luis Ochoa.
2011-07-09 GL 1.16.0 Allow change of schema in the UI. Patch from Thom
Brown.
2011-07-05 GL 1.16.0 Add "Search Objects" dialog. Patch from Jasmin Dizdarevic.
2011-07-03 GL 1.16.0 New maintenance action: CLUSTER. Patch from Thom Brown.
2011-07-02 GL 1.16.0 Enable "Has OIDs" on 8.4+ even when the table is
already created. Patch from Thom Brown.
2011-06-27 GL 1.16.0 Add Database Designer. Patch from Luis Ochoa.
2011-06-23 MH 1.14.0 Rename "Replication" node and menu to
"Slony Replication", and "Use Replication" to
"Use Slony".
2011-06-23 DP 1.16.0 Allow change of the fill factor. Patch from Thom Brown.
2011-05-04 MH 1.12.4 Properly show blocked processes when the lock is on
transactionid, and show -1 if it's blocking but we
can't figure out what it's blocking on.
2011-05-03 GL 1.14.0 Ask to reset connection in the query tool.
2011-04-30 GL 1.12.4 Fix permissions SQL when one role's name is the
beginning of another role's name. Report from Erwin
Brandstetter.
2011-04-17 GL 1.12.4 Show indexes only once in the Statistics tab. Patch
from Timon.
2011-04-11 GL 1.14.0 Handles 800x600 screens.
2011-04-11 GL 1.14.0 Add support for the per-column collation feature of
PostgreSQL 9.1.
2011-04-11 GL 1.14.0 Handles the service connection parameter (related to
pg_service.conf file).
2011-04-11 GL 1.14.0 Handles the hostaddr connection parameter.
2011-03-30 GL 1.14.0 Add support for Foreign Table object.
2011-03-30 GL 1.14.0 Add support for User Mapping object.
2011-03-30 GL 1.14.0 Add support for extension object.
2011-03-30 GL 1.14.0 Add support for ALTER TABLE ADD UNIQUE/PKEY USING INDEX
new syntax.
2011-03-29 GL 1.12.3 Fix setting of parameters in frmStatus.
2011-03-24 GL 1.14.0 Add support of constraint trigger.
2011-03-23 GL 1.14.0 Add support for Foreign Server object.
2011-03-15 GL 1.14.0 Add support of the new named restore point feature in
9.1.
2011-03-15 GL 1.14.0 Add support of the new basic recovery functions.
2011-03-15 GL 1.14.0 Add support of the new column (client_hostname) in
pg_stat_activity.
2011-03-15 GL 1.14.0 Add support of directory backup and restore.
2011-03-12 GL 1.12.3 Fix selection of objects in the backup/restore dialogs.
Report from Melvin Davidson.
2011-03-12 GL 1.12.3 Fix backup of a single table. Report from Vladimir
Kokovic.
2011-03-07 GL 1.14.0 Add support for Foreign Data Wrapper object.
2011-03-07 GL 1.14.0 Add support for invalid foreign key constraints (9.1).
2011-03-07 GL 1.14.0 Disabled rules are displayed with another icon.
2011-03-07 GL 1.14.0 Disabled triggers are displayed with another icon.
Idea from Erika.
2011-03-06 DP 1.12.3 Fix PPAS package support for 9.0 [Nikhil S].
2011-02-28 DP 1.12.3 Correctly identify the sys and dbo catalogs on PPAS
[Nikhil S].
2011-02-23 DP 1.12.3 Fix debugger support for PPAS 9.0 [Nikhil S].
2011-02-16 DP 1.14.0 Use function parameter default values as defaults in
the debugger.
2011-02-12 GL 1.12.3 Fix memory leak in the server status window. Report
from Julius Tuskenis.
2011-02-10 GL 1.14.0 Add the statistics reset information on databases.
2011-02-10 GL 1.14.0 Add three more informations from pg_stat_replication.
2011-02-10 GL 1.12.3 Fix the collate and ctype combobox so that a user can
type the collation and character type he wants.
2011-02-10 DP 1.12.3 Fix a datatype issue with a query on EDB Advanced Server
[Nikhil S].
2011-02-04 DP 1.12.3 Set a default schema on the default privileges tab, for
consistency with the privileges tab [Nikhil S].
2011-02-04 DP 1.12.3 Fix support for synonyms on functions and procedures in
EDB Advanced Server [Nikhil S].
2011-01-31 DP 1.12.3 Fix a bug in the way that stored procedures and functions
are identified in EDB Advanced Server, that could yield
incorrect results [Nikhil S].
2011-01-30 GL 1.12.3 Fix an error when clicking on "Display Objects". Report
and patch from Nikhil S.
2011-01-30 GL 1.14.0 Add support for SSL certificate files.
2011-01-30 GL 1.14.0 Add pg_stat_replication with pg_stat_activity.
2011-01-30 GL 1.14.0 Add pg_stat_database_conflicts to the database stats.
2011-01-30 GL 1.14.0 Add a specific panel for selection information.
2011-01-28 GL 1.12.3 Fix a crash when trying to save an edited pg_hba.conf
instead of postgresql.conf. Report and patch from
Nikhil S.
2011-01-20 GL 1.14.0 Disable all widgets in the server dialog if the user is
already connected to it.
2011-01-19 GL 1.12.3 Display the message only when we change the setting of
a connected server. Report from Josh Berkus.
2011-01-14 DP 1.12.3 Fix a parser bug in the pg_hba.conf editor [Dhiraj
Chawla].
2011-01-10 DP 1.12.3 Fix a crash when opening pgAdmin with the -q option
[Dhiraj Chawla].
2011-01-09 GL 1.12.3 Fix uncalled CREATE OR REPLACE VIEW when changing
privileges on an existing view
2011-01-09 GL 1.12.3 Fix dump and restore of mixed case database's name.
2011-01-01 GL 1.12.3 Fix the CASCADing option for constraints.
2011-01-01 GL 1.14.0 Add support for unlogged table.
2010-12-29 MH 1.14.0 Pull keywords from PostgreSQL include files to make sure
they are always up to date.
2010-12-29 MH 1.14.0 Add support for REPLICATION roles.
2010-12-26 GL 1.12.3 Make sure no query more than max size is stored in the
historic file.
2010-12-22 GL 1.12.3 Fix copy bug in the edit grid. Report from Mauro
Bertoli.
2010-12-21 GL 1.12.3 Fix the invisible column in the dlgEditGridOptions
2010-12-19 GL 1.14.0 Fix the enabling/disabling of toolbar buttons in the
query tool. Patch from Vinicius Santos.
2010-12-19 GL 1.12.3 Fix the permission check for the database restore menu.
2010-12-18 GL 1.14.0 Add "Number of selected characters" in query tool. Patch
from Vinicius Santos.
2010-12-18 GL 1.12.3 Stop losing focus in Find dialog if nothing more. Patch
from Nail Samatov.
2010-12-18 GL 1.12.3 Fix the Find dialog's UI. Patch from Nail Samatov.
2010-12-07 GL 1.12.2 Fix typo in --no-privileges option of frmRestore.
Report and patch from Conrad Akier.
2010-12-06 GL 1.14.0 Add option to request BOM write.
2010-12-06 GL 1.14.0 Add timestamp of last xact replay in server properties.
2010-11-23 DP 1.14.0 Store servers immediately following any change, rather
than at program exit [Sachin Srivastava].
2010-11-23 GL 1.12.2 Force typing the constraint name or the index name for
Foreign Key.
2010-11-23 GL 1.12.2 Fix quotation marks used for objects' names during
backup.
2010-11-22 DP 1.12.2 Improve the commenting logic in the SQL text box, to
allow quick commenting of multiple lines in succession
and fix some unintuitive behaviour [Nail Samatov].
2010-11-15 DP 1.14.0 Use the highlighted text in the Query Tool as the default
search string [Nail Samatov]
2010-11-12 GL 1.12.2 Fix comment on inherited columns.
2010-11-07 GL 1.14.0 Add support for 9.1 new kind of trigger: INSTEAD OF.
2010-11-03 GL 1.12.2 Fix frmOptions vertical size.
2010-11-03 GL 1.14.0 Add support for 9.1 ALTER TYPE new syntax for enum types.
2010-11-01 GL 1.14.0 Add support for 9.1 ALTER TYPE new syntax with
composite types.
2010-11-01 GL 1.14.0 Use -w switch when available for dump/restore.
2010-11-01 GL 1.14.0 Change the label of the OK button to "Backup" for
backups, and "Restore" for restores.
2010-10-22 DP 1.14.0 Dynamically link with wxWidgets on Windows.
2010-10-21 GL 1.12.2 Fix a lot of issues with length and precision in the
dlgType dialog.
2010-10-19 GL 1.14.0 Allow the use of the mousewheel to change font size.
2010-10-19 GL 1.12.2 Force the query font on the results grid.
2010-10-18 DP 1.14.0 Use tearable tabsets on the main form, query tool and
debugger to allow the user to re-arrange the UI as
desired.
2010-10-17 DP 1.14.0 Add block folding to the Query Tool and SQL text boxes.
2010-10-16 GL 1.14.0 Store/retrieve custom colours in colour picker.
2010-10-14 GL 1.12.2 Fix the setting of "Can update catalog" checkbox.
2010-10-14 GL 1.12.2 Fix two deletes of the same object in a query tool.
2010-10-14 GL 1.12.2 Fix for index size in the index list.
2010-10-12 DP 1.12.2 Fix a memory leak in the edit grid that can occur if
the user aborts a refresh of the data.
2010-09-30 AV 1.12.1 Fix the debugger invocation code to ensure it handles
different combinations of server version and libpq
builds as cleanly as possible.
2010-09-29 GL 1.12.1 Fix the double line number in the function properties
dialog.
2010-09-28 GL 1.12.1 Fix for log_statement in 7.4.
2010-09-28 GL 1.12.1 Lots of fixes on my "sort column" patch.
2010-09-28 DP 1.12.1 Avoid an error when viewing index statistics in
languages other than English.
2010-09-25 GL 1.12.1 Fix connection color on the query tool
2010-09-25 GL 1.12.1 Fix the reverse-engineered query for triggers
2010-09-23 GL 1.12.1 Fix the server's property dialog for unpriviledged users
2010-09-23 DP 1.12.1 Fix a crash if pressing escape in the edit grid filter
and sorting dialogue.
2010-09-21 GL 1.12.1 Add a tooltip and make RO the queries combobox
2010-09-21 GL 1.12.1 Fix the perspective string parameter
2010-09-16 GL 1.14.0 Select old values when connecting to another server.
2010-09-15 AV 1.12.0 Fix a possible crash on Solaris when closing the
server status windows.
2010-09-15 AV 1.12.0 Fix a possible crash on Solaris when cancelling a
debugging operation.
2010-08-31 AV 1.12.0 Fix a drawing glitch in the GQB, if the canvas exceeds
the hard-coded minimum size.
2010-08-30 GL 1.12.0 Get rid of the schema name and double quotes of the
result of the format_type stored procedure
2010-08-30 GL 1.14.0 Allow the use of Ctrl-V inside a textbox of
frmEditGrid. Patch from Steffen Kuhn.
2010-08-30 GL 1.14.0 Quoting for names is not anymore required for
unreserved keywords. Patch from Robert Haas.
2010-08-25 GL 1.14.0 dlgServer now uses two tabs.
2010-08-23 GL 1.12.0 Add a title to the frmStatus window when launched in
standalone mode.
2010-08-21 GL 1.14.0 Add the new vacuum/analyze counters on the statistics
tab of tables.
2010-08-19 GL 1.12.0 Fix an issue with tab keypress on the frmQuery with
Windows.
2010-08-17 GL 1.14.0 Add support for showing/hiding specific columns in the
server status window.
2010-08-17 GL 1.14.0 Add a shortcut to trigger a properties' window. Patch
from Steffen Kuhn.
2010-08-17 GL 1.12.0 Disable the "output pad" menu when the user is on the
GQB tab. Patch from Steffen Kuhn.
2010-08-17 GL 1.14.0 Add a "View Last X lines" menu item. Patch from Steffen
Kuhn.
2010-08-14 GL 1.12.0 Disable the "scratch pad" menu when the user is on the
GQB tab.
2010-08-13 GL 1.12.0 Fix another issue with the connection check code.
2010-08-13 GL 1.12.0 Fix an issue where the application_name is used as the
database name during a connection.
2010-08-10 GL 1.12.0 Fix the connection check code. Patch from Steffen Kuhn.
2010-08-10 GL 1.14.0 List the log files in the reverse order. Patch from
Steffen Kuhn.
2010-08-04 GL 1.12.0 Don't send the Greenplum query for each user, but
import it in the big roles query.
2010-07-30 GL 1.14.0 Add support for --quote-all-identifiers CLI option on
9.1 pg_dump/pg_dumpall.
2010-07-29 DP 1.14.0 Load plugins from any .ini file found in a new
plugins.d directory. This makes it much easier for
other software to register itself as a plugin.
2010-07-28 DP 1.12.0 Ensure the highlight colour in the SQL textboxes will
work with the system colours [Benedek László].
2010-07-24 GL 1.14.0 Support for Exclusion Constraints.
2010-07-24 GL 1.14.0 Better i18n by getting rid of GetTranslatedTypeName().
2010-07-24 GL 1.14.0 Add a contextual menu to reset a table/function's
statistics.
2010-07-24 GL 1.12.0 Make sure menubar's and toolbar's items are
enabled/disabled as appropriate when selecting a
server's group, per a report from Steffen Kuhn.
2010-07-21 DP 1.12.0 Ensure the Drop option is shown for rules when
appropriate.
2010-07-15 DP 1.12.0 Fix a crash that occured when pressing a key on a text
cell in the Edit Grid, when not in Edit mode.
2010-07-06 GL 1.10.4 Fix an escaping issue in the connection handling. Patch
from Benedek Laszlo.
2010-06-10 GL 1.10.4 Fix quoting of TABLE parameters in a function. Fix
also the quoting of the PL.
2010-06-08 AV 1.10.4 Ensure the variable editor is setup correctly upon
dialog creation.
2010-06-08 AV 1.10.4 Avoid a bug in the package dialog which could prevent
a comment being editted.
2010-06-08 AV 1.10.4 Don't pass values to OUT parameters when invoking
pl/pgsql functions in the debugger.
2010-06-02 GL 1.10.4 Fix the ever-displayed message when modifying multiple
times the same object (occurs with exttable, function,
package, trigger, per a report from Peter Geoghegan.
2010-05-27 AV 1.10.4 Use CALL to execute callable statements, not PERFORM.
2010-05-25 AV 1.12.0 Add support for discovery of 64 bit servers on Windows.
2010-05-21 AV 1.10.4 Drop package bodies correctly if they only contain
whitespace.
2010-05-21 AV 1.10.4 Fix a typo in the stored procedure debugger invocation
code block.
2010-05-21 AV 1.10.4 Fix debugging of functions by non-superusers in PG again.
2010-05-18 GL 1.10.4 Fix the editing of date and time values in the edit
grid, per a request from Paul Hughes.
2010-05-14 GL 1.10.4 Fix the function's generated query for TABLE-returning
functions.
2010-05-10 GL 1.10.3 Fix the "quiet log" query in the status server.
2010-05-07 AV 1.10.3 Call Stored Procedures in EnterpriseDB in an anonymous
block to prevent errors with out/inout parameters.
2010-05-07 AV 1.10.3 Fix an error when working with packages on EnterpriseDB
in 'postgres' mode.
2010-05-07 AV 1.10.3 Prevent a crash if the user cancels a restore operation.
2010-05-05 GL 1.10.3 Fix the refresh of a dropped function.
2010-04-29 AV 1.12.0 Add support for saving the graphical explain and query
builder canvases as images.
2010-04-29 AV 1.10.3 Fix a crash bug seen when closing the debugger parameter
dialog on OSX.
2010-04-29 GL 1.10.3 Fix to only show Storage value if the value is
different from the type's default value, per a
suggestion from Erwin Brandstetter.
2010-04-28 GL 1.10.3 Fix uncalled attempt to "change" array data types in
dlgColumn, per a report from Erwin Brandstetter.
2010-04-27 GL 1.12.0 Allow the user to define the maximum size of the query
that could be added in history, the total number of
queries stored and avoid storing identical queries. Per
a patch from Dickson S. Guedes, with minor changes by
me.
2010-04-27 AV 1.12.0 Add support for default ACLs in PostgreSQL 9.0+
2010-04-27 DP 1.10.3 Fix a crash that could occur if viewing a table with
no rows in the Edit Grid [Ashesh Vashi].
2010-04-26 DP 1.10.3 Fix a crash occuring when a function with a parameter
with a default is selected [Ashesh Vashi].
2010-04-24 GL 1.12.0 Added support for servers's groups.
2010-04-23 DP 1.12.0 Added support for deferrable unique constraints and
primary keys [Ashesh Vashi].
2010-04-22 DP 1.10.3 Don't offer debugging options to non-superusers on
Postgres Plus Advanced Server < 8.4 which doesn't
have support for user debugging [Ashesh Vashi]
2010-04-21 GL 1.10.3 Fix the saving and reverse engineering of parameters for
database, table, and function, according to a report
from Erwin Brandstetter.
2010-04-20 GL 1.10.3 Specify the schema of the table/function to restore if
pg_restore's release is 8.2 or later, per a report from
Kieran McCusker.
2010-04-20 GL 1.10.3 Fix the reverse engineering of a rule.
2010-04-16 GL 1.12.0 Fix the status server window on Mac OS X, per a report
from Dave.
2010-04-16 GL 1.12.0 Allow the selection of a user in the "select
connection" dialog. Per a request from Josh Berkus.
2010-04-16 GL 1.12.0 Add "reload configuration" action on a server node.
2010-04-16 GL 1.10.3 Fix the recent files, by notifying each frmQuery to
update their recent files. Same support for macros and
favourites. Per a report from Josh Berkus.
2010-04-15 GL 1.10.3 Fix the canvas resizing with really big table, per a
report from Michael Haltrecht and a patch from Ashesh
Vashi.
2010-04-10 GL 1.12.0 Duplicate the browser connection for the
maintenance/grant wizard dialog, so that the connection
to the db on the browser is still available for browsing
the objects, per a report from Magnus.
2010-04-10 GL 1.10.3 Add the missing RULEs for VIEWs in SQL pane, per a
report from Erwin Brandstetter.
2010-04-07 MH 1.12.0 When using execute-to-file in the query tool, prompt
for the filename before running the query instead of
after.
2010-04-06 GL 1.10.3 Add groups in the owner combobox, per a report from
Erwin Brandstetter.
2010-04-06 GL 1.12.0 Allow the change of the storage option of a column.
2010-04-03 GL 1.10.3 Get back to the Properties tab when a user connects to
a server.
2010-04-03 GL 1.12.0 Review of the frmOptions window (add sizers, use
wxFontPickerCtrl, wxDirPickerCtrl, wxFilePickerCtrl,
change a few tabs).
2010-04-03 GL 1.10.3 Fix the reverse engineering of a table when its columns
have Storage or Statistics value, per a report from
Erwin Brandstetter.
2010-04-03 GL 1.10.3 Correct reverse engineering of a function that RETURNS
TABLE, per a report from Erwin Brandstetter.
2010-04-02 GL 1.10.3 Display the tablespace in the reverse-engineered SQL of
the database.
2010-03-27 DP 1.12.0 Add support for private synonyms in Postgres Plus
Advanced Server 8.4 [Ashesh Vashi].
2010-03-25 GL 1.10.3 Make sure "Use Replication" is visible even with a big
comment on an column.
2010-03-25 GL 1.10.3 Prevent a crash on the GQB when someone right click to
delete a join rather than properly select it
2010-03-21 GL 1.12.0 Add new TYPE syntax of CREATE TABLE.
2010-03-21 GL 1.12.0 Support autonamed index.
2010-03-20 GL 1.10.3 Make sure that Statistics tab doesn't shows more
databases than Properties tab.
2010-03-19 DP 1.10.3 Warn the user if a file couldn't be opened because it
contains invalid characters [Ashesh Vashi]
2010-03-16 DP 1.10.3 Fix command line quoting for backup/restore [Ashesh
Vashi].
2010-03-10 DP 1.10.3 Avoid a crash when debugging NULL procedures [Ashesh
Vashi].
2010-03-08 GL 1.12.0 Replace wxColourPickerCtrl with our own widget (named
ctlColourPicker).
2010-03-04 GL 1.10.2 Correctly save the position of a pgFrame, per a report
from Andreas Laggner and Dan Halbert.
2010-02-16 GL 1.10.2 Fix the reverse engineering of a function, per a report
from Kieran McCusker.
2010-02-14 GL 1.12.0 Add SQL Syntax Highlight Configuration, per a patch
from Maga Abdurakhmanov.
2010-02-14 GL 1.12.0 Show some HS/SR-related informations on the server.
2010-02-14 GL 1.12.0 Show/hide line numbers in the query tool, with its own
setting.
2010-02-13 GL 1.12.0 Handle customization of some files (favourites, macros,
queries' history).
2010-02-12 GL 1.12.0 Support for more complex user/database default GUC
setttings.
2010-02-12 GL 1.12.0 Support for query automatic history.
2010-02-03 GL 1.12.0 Support new attoptions column in pg_attribute.
2010-02-03 GL 1.12.0 Support COSTS and BUFFERS new EXPLAIN options.
2010-01-24 GL 1.12.0 Review of the restore window.
2010-01-24 GL 1.12.0 Support for the new "ALTER TABLESPACE name
SET/RESET" statement.
2010-01-23 GL 1.12.0 Allow copy from the properties, statistics, dependencies,
and dependents panels.
2010-01-23 GL 1.10.2 Fix the xmlTextWriterEndDocument check when saving a
favorite.
2010-01-20 GL 1.10.2 Fix an SQL error when changing a parameter for a
database, role/user and a function.
2010-01-14 GL 1.12.0 Get rid of the alias/ip resolving code.
2010-01-10 GL 1.10.2 Fix the display of a type with a specific typmod.
2010-01-10 GL 1.10.2 Select the server choosen with the /s command-line
argument.
2010-01-10 GL 1.10.2 Fix the call to the Slony-I storenode function.
2010-01-10 GL 1.10.2 Fix display of the date/time chooser.
2009-12-29 GL 1.12.0 Add code to handle the change of an operator class on
an index column.
2009-12-29 GL 1.12.0 Use application_name for each window, add support of
the new application_name column in activity report (9.0).
2009-12-27 GL 1.12.0 Review of the maintenance window.
2009-12-27 GL 1.12.0 Use a wxBitmapComboBox on frmQuery to show the color of
the server the query tool is connected to.
2009-12-22 GL 1.12.0 StickySql is false by default, per request from Tom
Brown.
2009-12-17 GL 1.12.0 Complete review of the backup window. Add the remaining
options.
2009-12-07 GL 1.12.0 Support for columns with UPDATE event in CREATE TRIGGER
(9.0).
2009-12-07 GL 1.12.0 Support for TRIGGER with WHEN clause (9.0).
2009-12-07 GL 1.12.0 Use of wxColourPickerCtrl each time we need to choose a
color.
2009-12-03 GL 1.10.1 Replace Alt-F4 with Ctrl-Q and Ctrl-W.
2009-11-26 DP 1.10.1 Prevent a crash if the edit grid is closed whilst it
is loading data.
2009-11-25 DP 1.12.0 Add code to the schema browser to allow the user to
reconnect to the server if the connection is lost.
2009-11-25 DP 1.10.1 Don't attempt to remove rows in the edit grid if the
user presses the delete key when the delete button is
disabled.
2009-11-23 GL 1.12.0 Support for "ALTER TABLE ... ALTER COLUMN ... SET
STATISTICS DISTINCT".
2009-11-23 DP 1.10.1 Only offer valid server encodings for new databases
[Quan Zongliang]
2009-11-20 DP 1.10.1 Fix font dialogue on Snow Leopard.
2009-11-19 GL 1.12.0 Support for drag-and-drop of a file in the query tool.
2009-11-16 GL 1.10.1 Fix an issue with the ordering of the mappings in a
text search configuration.
2009-11-20 DP 1.10.1 Fix font dialogue on Snow Leopard.
2009-10-28 DP 1.12.0 Extend the branding code to allow the vendor-specific
help options to be hidden.
2009-10-21 DP 1.10.1 Fix a potential crash bug in the object browser.
2009-10-13 DP 1.10.1 Reverse engineer empty (not NULL) ACLs correctly.
2009-10-08 DP 1.12.0 Add 'SELECT Script' for functions and 'EXEC Script' for
procedures.
2009-10-08 DP 1.10.1 Fix Greenplum support for column oriented partitions
[Chuck McDevitt]
2009-10-05 DP 1.10.1 Ensure function variables get reset if the function is
modified, per Dmitry Samokhin.
2009-10-01 DP 1.10.1 Fix cluster creation for Slony 2.0 [Sachin Srivastava]
2009-09-28 GL 1.12.0 Allow the change of database for the lock report on the
server status window.
2009-09-25 GL 1.12.0 Highlight processes according to their activity.
2009-09-24 GL 1.10.1 Reverse engineer function defaults values correctly.
2009-09-18 DP 1.10.1 Fix a potential crash in the edit grid.
2009-09-17 GL 1.12.0 Add a button to open the query tool with the query
selected in the frmStatus window.
2009-09-04 GL 1.12.0 Add an option to automatically rollback a failed
transaction, per a report from Cédric Duprez.
2009-09-01 DP 1.10.1 Fix domain creation/modification for domains in
non-default schemas.
2009-09-01 GL 1.12.0 Remembers correctly window's maximized status, per a
report from David Schnur.
2009-09-01 DP 1.10.1 Reverse engineer language privileges correctly [Sachin
Srivastava].
2009-08-10 GL 1.10.1 Get rid of "No SQL query was generated." message dialog
when no tables are selected in the GQB, per request
from Rainer Bauer.
2009-08-10 GL 1.10.1 Hints files should be encoded in UTF-8.
2009-08-06 GL 1.12.0 Allow names without dot in open file dialog.
Fixes Debian bug 451038.
2009-08-05 GL 1.12.0 Better l10n support on sequences' statistics, per a
patch from Marek Cernocky.
2009-08-04 DP 1.10.1 Include comments on procedures in the reverse engineered
SQL.
2009-08-03 GL 1.12.0 Better l10n support on the Grant Wizard, per a
patch from Marek Cernocky.
2009-08-03 GL 1.12.0 Better l10n support on the generated reports, per a
patch from Marek Cernocky.
2009-07-30 DP 1.10.1 Fix debugger name resolution on 64 bit Solaris.
2009-07-30 DP 1.10.1 Fix Slony cluster creation on Solaris.
2009-07-30 DP 1.10.1 Fix foreign key creation on Solaris.
2009-07-29 DP 1.10.1 Fix an SQL syntax error when viewing the dependencies of
a sequence [Ashesh Vashi].
2009-07-24 GL 1.10.1 Better fix for schedule and step dialogs.
2009-07-24 GL 1.12.0 More statistics on various objects, databases, indexes,
and functions (8.4+ only for the last one).
2009-07-24 GL 1.10.1 Fix the menu entry in frmQuery, per a report from Luiz
K. Matsumura.
2009-07-21 DP 1.12.0 Add the partition name to the properties pane when viewing
the partitions of a table on GreenPlum [Chuck McDevitt].
2009-07-20 GL 1.10.1 Fix the dlgFunction handling of preload libraries, per
report from Michael Shapiro.
2009-07-20 GL 1.12.0 Multiple statements are an issue with pgPool-II in
its replication mode.
2009-07-19 GL 1.10.1 Fix schedule and step dialogs [Ashesh Vashi, Guillaume
Lelarge].
2009-07-07 GL 1.10.1 Fix macros writing, per report from Mauro Bertoli.
2009-07-07 DP 1.12.0 Cache datatypes in dlgTable, so they don't have to be
reloaded by dlgColumn, which may be used multiple times
when creating a table [Sachin Srivastava].
2009-07-01 DP 1.12.0 Use the STC instead of a rich text control in the edit
grid to prevent issues with control characters creeping
in on Windows [Sachin Srivastava].