diff options
author | Ingela Anderton Andin <[email protected]> | 2011-06-20 10:02:19 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-06-20 10:02:19 +0200 |
commit | d798caa64f4bb7509e89e6b8161c7eb196bc7270 (patch) | |
tree | 1cdc9f8df2eebee496f5f7103e3d9b2dd94fb286 /lib/odbc/test/odbc_test.hrl | |
parent | aa5fb1df25e9f37f798a00ec6206838d73306968 (diff) | |
parent | e670d7bec29c5390f2f7a53a8730a0db4efc99d7 (diff) | |
download | otp-d798caa64f4bb7509e89e6b8161c7eb196bc7270.tar.gz otp-d798caa64f4bb7509e89e6b8161c7eb196bc7270.tar.bz2 otp-d798caa64f4bb7509e89e6b8161c7eb196bc7270.zip |
Merge branch 'ia/odbc/on-more-platforms' into dev
* ia/odbc/on-more-platforms:
Added code to handle old postgres drivers on solaris and running against postgres for linux 64 bits (MySQL 64 seems to be broken).
Enabled odbc tests on mac
Diffstat (limited to 'lib/odbc/test/odbc_test.hrl')
-rw-r--r-- | lib/odbc/test/odbc_test.hrl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/odbc/test/odbc_test.hrl b/lib/odbc/test/odbc_test.hrl index 7d2522d667..397d04756b 100644 --- a/lib/odbc/test/odbc_test.hrl +++ b/lib/odbc/test/odbc_test.hrl @@ -27,7 +27,12 @@ {unix, sunos} -> postgres; {unix,linux} -> - mysql; + case erlang:system_info(wordsize) of + 4 -> + mysql; + _ -> + postgres + end; {win32, _} -> sqlserver end). |