Creating serial ID on Windows. - Mailing list pgsql-general

From Ardian Xharra (Boxxo)
Subject Creating serial ID on Windows.
Date
Msg-id 013501c651b0$0b2a66e0$6a01a8c0@BOXXO.ARDIAN
Whole thread Raw
Responses Re: Creating serial ID on Windows.  (Chris <dmagick@gmail.com>)
List pgsql-general
I'm having some troubles restoring a database on Windows and I found this difference between PostgreSQL running on Linux and Windows.
When I create a table like this:
CREATE TABLE fee_payment1(id_fee_payment1 serial NOT NULL) WITH OIDS;
On Linux platform it will be:
CREATE TABLE fee_payment1 (  id_fee_payment1 serial NOT NULL) WITH OIDS;
And on Windows platform is:
CREATE TABLE fee_payment1
(  id_fee_payment1 int4 NOT NULL DEFAULT nextval('fee_payment1_id_fee_payment1_seq'::regclass) ) WITH OIDS;
So, I would like to know if this would have an impact throught restoring database.

pgsql-general by date:

Previous
From: Tony Caduto
Date:
Subject: ACL question
Next
From: Tom Lane
Date:
Subject: Re: Bug? was: Re: ERROR: could not convert UTF8 character to ISO8859-1