From: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
---|---|
To: | Dmitry Dolgov <9erthalion6(at)gmail(dot)com> |
Cc: | Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>, Erik Rijkers <er(at)xs4all(dot)nl>, Michael Paquier <michael(at)paquier(dot)xyz>, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, DUVAL REMI <REMI(dot)DUVAL(at)cheops(dot)fr>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: proposal: schema variables |
Date: | 2024-11-17 04:41:00 |
Message-ID: | CAFj8pRBVCOv=VhpprPsVa6AoE=i=Y9s-HRcMvYnyWaOJaJPm-A@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-performance |
so 16. 11. 2024 v 23:49 odesílatel Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
napsal:
>
>
> so 16. 11. 2024 v 15:27 odesílatel Dmitry Dolgov <9erthalion6(at)gmail(dot)com>
> napsal:
>
>> > On Sat, Nov 16, 2024 at 07:10:31AM GMT, Pavel Stehule wrote:
>>
>> Sorry, got distracted. Let me try to answer step by step.
>>
>> > > As far as I recall, last time this topic was discussed in hackers, two
>> > > options were proposed: the one with VARIABLE(name), what you mention
>> > > here; and another one with adding variables to the FROM clause. The
>> > > VARIABLE(...) syntax didn't get much negative feedback, so I guess why
>> > > not -- if you find it fitting, it would be interesting to see the
>> > > implementation.
>> > >
>> > > I'm afraid it should not be just an alternative syntax, but the only
>> one
>> > > allowed, because otherwise I don't see how scenarious like "drop a
>> > > column with the same name" could be avoided. As in the previous
>> thread:
>> > >
>> > > -- we've got a variable b at the same time
>> > > SELECT a, b FROM table1;
>> > >
>> >
>> > I am sorry, but I am in very strong opposition against this idea.
>> Nobody
>> > did reply to my questions, that can change my opinion.
>>
>> From your reply it's not quite clear, are you opposed to have a mandatory
>> VARIABLE syntax, or having variables in the FROM clause? My main proposal
>> was
>> about the former, but the points that are following seems to talk about
>> the
>> latter. I think it's fine to reject the idea about the FROM clause, as
>> long as
>> you got some reasonable arguments.
>>
>
> I am against a requirement to specify a variable in the FROM clause.
>
>
>>
>> > > Then dropping the column b, but everything still works beause the
>> > > variable b got silently picked up. But if it would be required to say
>> > > VARIABLE(b), then all fine.
>> >
>> > but same risk you have any time in plpgsql - all time. I don't remember
>> any
>> > bug report related to this issue.
>>
>> Which exactly scenario about plpgsql do you have in mind? Just have tried
>> to
>> declare a variable inside a plpgsql function with the same name as a table
>> column, and got an error about an ambiguous reference.
>>
>
> Until you execute the query, you cannot know if there is a conflict or
> not. So you can change table structure and you can change the procedure's
> code, and there can be an invisible conflict until execution and query
> evaluation. The conflict between PL/pgSQL and SQL raises an error. The
> conflict between session variables and SQL raises warnings. The issue is
> detected.
>
>
>
>>
>> > Theoretically, variables can have the same names as tables. The table
>> > overshadows the variable, so it can work. But when somebody drops the
>> > variable, then the query still can work. So requirement of usage
>> variable
>> > in FROM clause protects us just against drop column, but not against
>> > dropping table. In Postgres the dropping table is possibly risky due
>> > search_path (that introduces shadowing concept) without introduction
>> > variables. There is a possibility of this issue, but how common is this
>> > issue?
>>
>> This sounds to me like an argument against allowing name clashing between
>> variables and tables. It makes even more sense, since session variables
>> are in
>> many ways similar to tables.
>>
>>
> It doesn't help too much. It can fix just one issue. But you can have
> tables with the same name in different schemas inside schemas from
> search_path. Unique table names solve nothing.
>
the combination of pg_class and pg_attribute cannot describe scalar
variables (without hacks). Then you need to enhance pg_class, which can be
confusing. And on the second hand almost all columns in pg_class have no
sense for variables. And when variables and tables are in different tables,
you cannot ensure a unique name. Variables are similar to tables only in
possibility to hold a value. That is all. But variables don't store data to
file, don't store data in pages, don't allow usage of other storages or
formats, and don't support foreign storage. The similarity between
variables and tables is like the similarity between horses and cars. Both
can help with moving.
>
>> > I think this issue can be partially similar to creating two equally
>> named
>> > tables in different schemas (both schemas are in search path). When you
>> > drop one table, the query will work, but the result is different. It is
>> the
>> > same issue. The SQL has no concept of shadowing and on the base line it
>> is
>> > not necessary.
>>
>> The point is that most of users are aware about schemas and search path
>> dangers. But to me such a precedent is not an excuse to introduce a new
>> feature
>> with similar traps, which folks would have to learn by making mistakes.
>> Judging
>> from the feedback to this patch over time, I've got an impression that
>> lots of
>> people are also not fans of that.
>>
>
> Unfortunately - I don't believe so there is some syntax without traps. You
> can check all implementations in other databases. These designs are very
> different, and all have some issues and all have some limits. It is native
> - you are trying to join the procedural and functional world.
>
> I understand the risks. These risks are there. But there is no silver
> bullet - all proposed designs fixed just one case, and not others, and then
> I don't see a strong enough benefit to introduce design that is far from
> common usage. Maybe I have a different experience, because I am a man from
> the stored procedures area, and the risk of collisions is a known issue
> well solved by common conventions and in postgres by
> plpgsql.variable_conflict setting. The proposed patch set has very similar
> functionality. I think the introduction of VARIABLE(xx) syntax and safe
> syntax guard warning the usage of variables can be safe in how it is
> possible. But still I want to allow "short" "usual" usage to people who use
> a safe convention. There is no risk when you use a safe prefix or safe
> schema.
>
>
>
>>
>> > > Then dropping the column b, but everything still works beause the
>> > > variable b got silently picked up. But if it would be required to say
>> > > VARIABLE(b), then all fine.
>> > >
>> >
>> > In this scenario you will get a warning related to variable shadowing
>> > (before you drop a column).
>> >
>> > [...]
>> >
>> > What do you think about the following design? I can implement a warning
>> > "variable_usage_guard" when the variable is accessed without using
>> > VARIABLE() syntax. We can discuss later if this warning can be enabled
>> by
>> > default or not. There I am open to any variant.
>>
>> I don't follow what are you winning by that? In the context of problem
>> above
>> (i.e. dropping a column), such a warning is functionally equivalend to a
>> warning about shadowing.
>>
>> The problem is that it doesn't sound very appealing to have a feature,
>> which
>> requires some extra efforts to be used in a right way (e.g. put
>> everything into
>> a special vars schema, or keep an eye on logs). Most certainly there are
>> such
>> bits in PostgreSQL today, with all the best practices, crowd wisdom, etc.
>> But
>> the bar for new features in this sense is much higher, you can see it
>> from the
>> feedback to this patch. Thus I believe it makes sense, from purely
>> tactical
>> reasons, to not try to convince half of the community to lower the bar,
>> but
>> instead try to modify the feature to make it more acceptable, even if some
>> parts you might not like.
>>
>> Btw, could you repeat, what was exactly your argument against mandatory
>> VARIABLE() syntax? It's somehow scattered across many replies, would be
>> great
>> to summarize it in a couple of phrases.
>>
>> > Shadowing by self is not an issue, probably, but it is a signal of code
>> > quality problems.
>>
>> Agree, but I'm afraid code quality of an average application using
>> PostgreSQL
>> is quite low, so here we are.
>>
>> As a side note, I've recently caught myself thinking "it would be cool to
>> have
>> session variables here". The use case was preparing a policy for RLS,
>> based on
>> some session-level data set by an application. This session-level data is
>> of a
>> composite data type, so simple current_setting is cumbersome to use, and a
>> temporary table will be dropped at the end, taking the policy with it due
>> to
>> the recorded dependency between them. Thus a session variable of some
>> composite
>> type sounds like a good fit.
>>
>
From | Date | Subject | |
---|---|---|---|
Next Message | Pavel Stehule | 2024-11-17 04:53:17 | Re: proposal: schema variables |
Previous Message | Alexander Lakhin | 2024-11-17 03:00:01 | Re: [EXTERNAL] Re: Add non-blocking version of PQcancel |
From | Date | Subject | |
---|---|---|---|
Next Message | Pavel Stehule | 2024-11-17 04:53:17 | Re: proposal: schema variables |
Previous Message | Pavel Stehule | 2024-11-16 22:49:42 | Re: proposal: schema variables |