agora inbox for pljava-dev@postgresql.org
help / color / mirror / Atom feed[Pljava-dev] Snapshot released and Windows binaries of 1.4.3
6+ messages / 0 participants
[nested] [flat]
* [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
@ 2012-05-25 10:56
2012-05-25 15:36 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
0 siblings, 1 reply; 6+ messages in thread
From: @ 2012-05-25 10:56 UTC (permalink / raw)
Hi all,
I've just released a CVS snapshot with Windows binaries.
http://pgfoundry.org/frs/?group_id=1000038
There are now 64bit Windows binaries of both 1.4.3 and todays snapshot.
32bit binaries will hopefully show up later today. As well as Linux
ones.
Enjoy,
--
Johann Oskarsson http://www.2ndquadrant.com/ |[]
PostgreSQL Development, 24x7 Support, Training and Services --+--
|
Blog: http://my.opera.com/myrkraverk/blog/
^ permalink raw reply [nested|flat] 6+ messages in thread
* [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 10:56 [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
@ 2012-05-25 15:36 `
2012-05-25 18:42 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
0 siblings, 1 reply; 6+ messages in thread
From: @ 2012-05-25 15:36 UTC (permalink / raw)
hi Johann,
I get this error with both 'pljava-x86_64-w64-mingw32-pg9.1-1.4.3.tar.gz'
and 'pljava-x86_64-w64-mingw32-pg9.1-snapshot.20120525.0.tar.gz'.
org.postgresql.util.PSQLException: ERROR: incompatible library
"D:/PostgreSQL/9.
1/lib/pljava.dll": missing magic block
Hint: Extension libraries are required to use the PG_MODULE_MAGIC macro.
at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2101)
Setup:
PostgreSQL 9.1.3, compiled by Visual C++ build 1500, 64-bit
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)
This time there are no errors in Dependency Walker. There is a single
warning though - Warning: At least one module has an unresolved import due
to a missing export function in a delay-load dependent module.
Appreciate your help on this.
~ Binoy
--
View this message in context: http://postgresql.1045698.n5.nabble.com/Snapshot-released-and-Windows-binaries-of-1-4-3-tp5709995p57...
Sent from the PL/Java mailing list archive at Nabble.com.
^ permalink raw reply [nested|flat] 6+ messages in thread
* [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 10:56 [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 15:36 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
@ 2012-05-25 18:42 `
2012-05-26 06:30 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
0 siblings, 1 reply; 6+ messages in thread
From: @ 2012-05-25 18:42 UTC (permalink / raw)
Hi,
binoyaf <binoyaf at gmail.com> writes:
> org.postgresql.util.PSQLException: ERROR: incompatible library
> "D:/PostgreSQL/9.1/lib/pljava.dll": missing magic block
Can you show me the results of the following query?
SELECT current_setting( 'server_version_num' )::int4 / 100 AS version,
current_setting( 'max_function_args' ) AS funcmaxargs,
current_setting( 'max_index_keys' ) AS indexmaxkeys,
n.typlen AS namedatalen,
f4.typbyval AS float4byval,
f8.typbyval AS float8byval
FROM pg_type AS n, pg_type AS f4, pg_type AS f8
WHERE n.oid = 'pg_catalog.name'::regtype
AND f4.oid = 'pg_catalog.float4'::regtype
AND f8.oid = 'pg_catalog.float8'::regtype;
--
Johann Oskarsson http://www.2ndquadrant.com/ |[]
PostgreSQL Development, 24x7 Support, Training and Services --+--
|
Blog: http://my.opera.com/myrkraverk/blog/
^ permalink raw reply [nested|flat] 6+ messages in thread
* [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 10:56 [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 15:36 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 18:42 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
@ 2012-05-26 06:30 `
2012-05-26 09:17 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
0 siblings, 1 reply; 6+ messages in thread
From: @ 2012-05-26 06:30 UTC (permalink / raw)
Here is the output.
version (integer): 901
funcmaxargs (text): 100
indexmaxkeys (text): 32
namedatalen (smallint): 64
float4byval (boolean): t
float8byval (boolean): f
--
View this message in context: http://postgresql.1045698.n5.nabble.com/Snapshot-released-and-Windows-binaries-of-1-4-3-tp5709995p57...
Sent from the PL/Java mailing list archive at Nabble.com.
^ permalink raw reply [nested|flat] 6+ messages in thread
* [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 10:56 [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 15:36 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 18:42 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-26 06:30 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
@ 2012-05-26 09:17 `
2012-05-26 15:44 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
0 siblings, 1 reply; 6+ messages in thread
From: @ 2012-05-26 09:17 UTC (permalink / raw)
binoyaf <binoyaf at gmail.com> writes:
> Here is the output.
Thank you. I'm in the process of uploading new binaries. Please let me
know how they work.
--
Johann Oskarsson http://www.2ndquadrant.com/ |[]
PostgreSQL Development, 24x7 Support, Training and Services --+--
|
Blog: http://my.opera.com/myrkraverk/blog/
^ permalink raw reply [nested|flat] 6+ messages in thread
* [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 10:56 [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 15:36 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 18:42 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-26 06:30 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-26 09:17 ` [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
@ 2012-05-26 15:44 `
0 siblings, 0 replies; 6+ messages in thread
From: @ 2012-05-26 15:44 UTC (permalink / raw)
I tried 'pljava-x86_64-w64-mingw32-pg9.1-1.4.3.tar.gz' and it works fine with
PostgreSQL 9.1 64 bit.
Thanks a lot for your help.
--
View this message in context: http://postgresql.1045698.n5.nabble.com/Snapshot-released-and-Windows-binaries-of-1-4-3-tp5709995p57...
Sent from the PL/Java mailing list archive at Nabble.com.
^ permalink raw reply [nested|flat] 6+ messages in thread
end of thread, other threads:[~2012-05-26 15:44 UTC | newest]
Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2012-05-25 10:56 [Pljava-dev] Snapshot released and Windows binaries of 1.4.3
2012-05-25 15:36 `
2012-05-25 18:42 `
2012-05-26 06:30 `
2012-05-26 09:17 `
2012-05-26 15:44 `
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox