On Wed, Nov 20, 2019 at 1:11 PM btkimurayuzk
wrote:
>
> > Barring any objection, I'm thinking to commit this patch.
> >
> > Regards,
>
> Build and All Test has passed .
> Looks good to me .
Thanks for reviewing the patch!
I committed the following two patches.
- Allow ALTER VIEW command to renam
Barring any objection, I'm thinking to commit this patch.
Regards,
Build and All Test has passed .
Looks good to me .
Regards,
On Wed, Nov 6, 2019 at 4:14 PM btfujiitkp wrote:
>
> 2019-10-31 21:01 に Fujii Masao さんは書きました:
> > On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed
> > wrote:
> >>
> >>
> >>
> >> On Thu, Oct 31, 2019 at 12:32 PM Fujii Masao
> >> wrote:
> >>>
> >>> On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
> >>>
On Thu, Oct 31, 2019 at 9:34 PM Ibrar Ahmed wrote:
>
>
>
> On Thu, Oct 31, 2019 at 5:28 PM Ibrar Ahmed wrote:
>>
>>
>>
>> On Thu, Oct 31, 2019 at 5:11 PM Ibrar Ahmed wrote:
>>>
>>>
>>>
>>> On Thu, Oct 31, 2019 at 5:01 PM Fujii Masao wrote:
On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed
2019-10-31 21:01 に Fujii Masao さんは書きました:
On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed
wrote:
On Thu, Oct 31, 2019 at 12:32 PM Fujii Masao
wrote:
On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
>
> Fujii Masao writes:
> > Currently CREATE OR REPLACE VIEW command fails if the column names
On Thu, Oct 31, 2019 at 10:54 PM Tom Lane wrote:
>
> Fujii Masao writes:
> > On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
> >> Fujii Masao writes:
> >>> Currently CREATE OR REPLACE VIEW command fails if the column names
> >>> are changed.
>
> >> That is, I believe, intentional. It's an effe
Fujii Masao writes:
> On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
>> Fujii Masao writes:
>>> Currently CREATE OR REPLACE VIEW command fails if the column names
>>> are changed.
>> That is, I believe, intentional. It's an effective aid to catching
>> mistakes in view redefinitions, such as
On Thu, Oct 31, 2019 at 5:28 PM Ibrar Ahmed wrote:
>
>
> On Thu, Oct 31, 2019 at 5:11 PM Ibrar Ahmed wrote:
>
>>
>>
>> On Thu, Oct 31, 2019 at 5:01 PM Fujii Masao
>> wrote:
>>
>>> On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed
>>> wrote:
>>> >
>>> >
>>> >
>>> > On Thu, Oct 31, 2019 at 12:32 PM Fu
On Thu, Oct 31, 2019 at 5:11 PM Ibrar Ahmed wrote:
>
>
> On Thu, Oct 31, 2019 at 5:01 PM Fujii Masao wrote:
>
>> On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed
>> wrote:
>> >
>> >
>> >
>> > On Thu, Oct 31, 2019 at 12:32 PM Fujii Masao
>> wrote:
>> >>
>> >> On Thu, Oct 31, 2019 at 1:42 PM Tom Lane
On Thu, Oct 31, 2019 at 5:01 PM Fujii Masao wrote:
> On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed wrote:
> >
> >
> >
> > On Thu, Oct 31, 2019 at 12:32 PM Fujii Masao
> wrote:
> >>
> >> On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
> >> >
> >> > Fujii Masao writes:
> >> > > Currently CREATE O
On Thu, Oct 31, 2019 at 7:59 PM Ibrar Ahmed wrote:
>
>
>
> On Thu, Oct 31, 2019 at 12:32 PM Fujii Masao wrote:
>>
>> On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
>> >
>> > Fujii Masao writes:
>> > > Currently CREATE OR REPLACE VIEW command fails if the column names
>> > > are changed.
>> >
>
On Thu, Oct 31, 2019 at 12:32 PM Fujii Masao wrote:
> On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
> >
> > Fujii Masao writes:
> > > Currently CREATE OR REPLACE VIEW command fails if the column names
> > > are changed.
> >
> > That is, I believe, intentional. It's an effective aid to catchi
On Thu, Oct 31, 2019 at 1:42 PM Tom Lane wrote:
>
> Fujii Masao writes:
> > Currently CREATE OR REPLACE VIEW command fails if the column names
> > are changed.
>
> That is, I believe, intentional. It's an effective aid to catching
> mistakes in view redefinitions, such as misaligning the new set
Fujii Masao writes:
> Currently CREATE OR REPLACE VIEW command fails if the column names
> are changed.
That is, I believe, intentional. It's an effective aid to catching
mistakes in view redefinitions, such as misaligning the new set of
columns relative to the old. That's particularly importan
Hi,
Currently CREATE OR REPLACE VIEW command fails if the column names
are changed. For example,
=# CREATE VIEW test AS SELECT 0 AS a;
=# CREATE OR REPLACE VIEW test AS SELECT 0 AS x;
ERROR: cannot change name of view column "a" to "x"
I'd like to propose the attached patch that all
15 matches
Mail list logo