Re: Windows Vista support (Buildfarm Vaquita)

From: Dave Page <dpage(at)postgresql(dot)org>
To: meskes(at)postgresql(dot)org, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Windows Vista support (Buildfarm Vaquita)
Date: 2007-05-09 11:46:52
Message-ID: 4641B4AC.40600@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Michael Meskes wrote:
> Dave, could you please run
>
> insert into date_test ( d , ts ) values ( date '1966-01-17' ,
> timestamp '2000-07-12 17:34:29' );
>
> on the Vista system and then select * from date_test;?
>
> According to the logs the insert runs successfully but the select gives
> an invalid date format. Interestingly the date argument is displayed
> correctly but the timestamp argument throws the invalid date error,
> which does not really make sense.

I had to create the table manually of course, so copying what the code
seems to do, I get:

regress1=# create table date_test (d date, ts timestamp);
CREATE TABLE
regress1=# set datestyle to iso;
SET
regress1=# insert into date_test(d, ts) values (date '1966-01-17',
timestamp '2000-07-12 17:34:29');
INSERT 0 1
regress1=# select * from date_test;
d | ts
------------+---------------------
1966-01-17 | 2000-07-12 17:34:29
(1 row)

Which looks OK to me :-(

> Unfortunately I do not have access to a Vista system I could use to test
> and track this one down.

I'm happy to run any tests you like.

> As far as the other message is concerned I'm at a loss. It simply
> refuses to run the sql/update script. No idea why.

Oh, hang on... Vista's new 'security' features include popups that ask
permission from the user before running any installers. One of the more
basic checks they use is the filename - *anything* called setup.exe will
cause user confirmation to be required before it will run. I believe for
non-interactive sessions it'll just refuse to run. I just tried running
update.exe myself, and yes, you guessed it, a user confirmation dialog
popped up :-(

Can we rename the test please?

Regards, Dave.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Peter Eisentraut 2007-05-09 12:20:44 Re: Windows Vista support (Buildfarm Vaquita)
Previous Message Simon Riggs 2007-05-09 09:27:59 Re: Seq scans roadmap