* src/backend/postgres/gncquery.c: change INITIAL_BUFSZ to 32000

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7923 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-02-02 17:07:57 +00:00
parent f321b5dfec
commit c6568f0012
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@
internationalization issues -- strings were translated but the
translation was not being used. Fixes # 105036
* src/backend/postgres/gncquery.c: change INITIAL_BUFSZ to 32000
2003-02-01 Benoit Grégoire <bock@step.polymtl.ca>
* src/import-export/gnc-ofx-import.c: No longer assume that transaction with type OFX_OTHER are investement transactions. Fixes bug reported by Rik harris.

View File

@ -65,7 +65,7 @@ struct _gnc_query {
/* =========================================================== */
#define INITIAL_BUFSZ 16300
#define INITIAL_BUFSZ 32000
sqlQuery *
sqlQuery_new(void)