File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -2198,4 +2198,9 @@ Sun, 20 May 2007 22:01:11 +0200
2198
2198
2199
2199
- Do not try to find local timezone in DecodeDateTime() because the
2200
2200
result is not used anyway. This also fixes Vista's build problems.
2201
+
2202
+ Sun, 27 May 2007 13:14:39 +0200
2203
+
2204
+ - Changed variable test to not run into infinite loops on backend
2205
+ errors.
2201
2206
- Set ecpg version to 4.3.1.
Original file line number Diff line number Diff line change 3
3
4
4
exec sql include ../regression;
5
5
6
- exec sql whenever sqlerror sqlprint ;
6
+ exec sql whenever sqlerror stop ;
7
7
8
8
exec sql type c is char reference;
9
9
typedef char* c;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Solution;
3
3
#
4
4
# Package that encapsulates a Visual C++ solution file generation
5
5
#
6
- # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.25 2007/05/15 01:57:57 adunstan Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.26 2007/05/27 11:16:41 meskes Exp $
7
7
#
8
8
use Carp;
9
9
use strict;
@@ -247,8 +247,9 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
247
247
#if (_MSC_VER > 1200)
248
248
#define HAVE_LONG_LONG_INT_64
249
249
#define ENABLE_THREAD_SAFETY 1
250
- #endif
251
250
EOF
251
+ print O " #define USE_INTEGER_DATETIMES 1\n " if ($self -> {options }-> {integer_datetimes });
252
+ print O " #endif\n " ;
252
253
close (O);
253
254
}
254
255
You can’t perform that action at this time.
0 commit comments