remove undocumented assign syntax from plpgsql doc

Started by Pavel Stehulealmost 13 years ago27 messagesdocs
Jump to latest
#1Pavel Stehule
pavel.stehule@gmail.com

Hello

remove undocumented syntax for assign statements in plpgsql doc examples

related to /messages/by-id/CAJ4CxLkBFNAAsWdz=CsDkU1nC0De60WO15de=aUf6Q1W9DSj7w@mail.gmail.com
thread

Regards

Pavel Stehule

Attachments:

plpgsql-assign.patchapplication/octet-stream; name=plpgsql-assign.patchDownload+15-15
#2Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#1)
Re: remove undocumented assign syntax from plpgsql doc

Applied.

---------------------------------------------------------------------------

On Wed, May 29, 2013 at 10:02:20AM +0200, Pavel Stehule wrote:

Hello

remove undocumented syntax for assign statements in plpgsql doc examples

related to /messages/by-id/CAJ4CxLkBFNAAsWdz=CsDkU1nC0De60WO15de=aUf6Q1W9DSj7w@mail.gmail.com
thread

Regards

Pavel Stehule

diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml
index 19498c6..1817c9d 100644
--- a/doc/src/sgml/plpgsql.sgml
+++ b/doc/src/sgml/plpgsql.sgml
@@ -3815,20 +3815,20 @@ CREATE OR REPLACE FUNCTION update_emp_view() RETURNS TRIGGER AS $$
DELETE FROM emp WHERE empname = OLD.empname;
IF NOT FOUND THEN RETURN NULL; END IF;

- OLD.last_updated = now();
+ OLD.last_updated := now();
INSERT INTO emp_audit VALUES('D', user, OLD.*);
RETURN OLD;
ELSIF (TG_OP = 'UPDATE') THEN
UPDATE emp SET salary = NEW.salary WHERE empname = OLD.empname;
IF NOT FOUND THEN RETURN NULL; END IF;

- NEW.last_updated = now();
+ NEW.last_updated := now();
INSERT INTO emp_audit VALUES('U', user, NEW.*);
RETURN NEW;
ELSIF (TG_OP = 'INSERT') THEN
INSERT INTO emp VALUES(NEW.empname, NEW.salary);

-            NEW.last_updated = now();
+            NEW.last_updated := now();
INSERT INTO emp_audit VALUES('I', user, NEW.*);
RETURN NEW;
END IF;
@@ -3913,10 +3913,10 @@ AS $maint_sales_summary_bytime$
-- Work out the increment/decrement amount(s).
IF (TG_OP = 'DELETE') THEN
-            delta_time_key = OLD.time_key;
-            delta_amount_sold = -1 * OLD.amount_sold;
-            delta_units_sold = -1 * OLD.units_sold;
-            delta_amount_cost = -1 * OLD.amount_cost;
+            delta_time_key := OLD.time_key;
+            delta_amount_sold := -1 * OLD.amount_sold;
+            delta_units_sold := -1 * OLD.units_sold;
+            delta_amount_cost := -1 * OLD.amount_cost;

ELSIF (TG_OP = 'UPDATE') THEN

@@ -3928,17 +3928,17 @@ AS $maint_sales_summary_bytime$
OLD.time_key, NEW.time_key;
END IF;

-            delta_time_key = OLD.time_key;
-            delta_amount_sold = NEW.amount_sold - OLD.amount_sold;
-            delta_units_sold = NEW.units_sold - OLD.units_sold;
-            delta_amount_cost = NEW.amount_cost - OLD.amount_cost;
+            delta_time_key := OLD.time_key;
+            delta_amount_sold := NEW.amount_sold - OLD.amount_sold;
+            delta_units_sold := NEW.units_sold - OLD.units_sold;
+            delta_amount_cost := NEW.amount_cost - OLD.amount_cost;

ELSIF (TG_OP = 'INSERT') THEN

-            delta_time_key = NEW.time_key;
-            delta_amount_sold = NEW.amount_sold;
-            delta_units_sold = NEW.units_sold;
-            delta_amount_cost = NEW.amount_cost;
+            delta_time_key := NEW.time_key;
+            delta_amount_sold := NEW.amount_sold;
+            delta_units_sold := NEW.units_sold;
+            delta_amount_cost := NEW.amount_cost;

END IF;

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#2)
Re: remove undocumented assign syntax from plpgsql doc

Bruce Momjian <bruce@momjian.us> writes:

On Wed, May 29, 2013 at 10:02:20AM +0200, Pavel Stehule wrote:

remove undocumented syntax for assign statements in plpgsql doc examples

Applied.

I thought the consensus in the referenced thread had been to go the other
way. We're not going to remove the syntax option to use "=", so shouldn't
we document it rather than pretending it doesn't exist?

The end of the other thread was
/messages/by-id/1370122048.6266.YahooMailNeo@web162902.mail.bf1.yahoo.com

regards, tom lane

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#4Pavel Stehule
pavel.stehule@gmail.com
In reply to: Tom Lane (#3)
Re: remove undocumented assign syntax from plpgsql doc

is not better to be consistent in doc?

Im not aganst to documentation second syntax, but examples in doc should be
consistent
Dne 11. 1. 2014 19:52 "Tom Lane" <tgl@sss.pgh.pa.us> napsal(a):

Show quoted text

Bruce Momjian <bruce@momjian.us> writes:

On Wed, May 29, 2013 at 10:02:20AM +0200, Pavel Stehule wrote:

remove undocumented syntax for assign statements in plpgsql doc examples

Applied.

I thought the consensus in the referenced thread had been to go the other
way. We're not going to remove the syntax option to use "=", so shouldn't
we document it rather than pretending it doesn't exist?

The end of the other thread was

/messages/by-id/1370122048.6266.YahooMailNeo@web162902.mail.bf1.yahoo.com

regards, tom lane

#5Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#3)
Re: remove undocumented assign syntax from plpgsql doc

On Sat, Jan 11, 2014 at 01:52:30PM -0500, Tom Lane wrote:

Bruce Momjian <bruce@momjian.us> writes:

On Wed, May 29, 2013 at 10:02:20AM +0200, Pavel Stehule wrote:

remove undocumented syntax for assign statements in plpgsql doc examples

Applied.

I thought the consensus in the referenced thread had been to go the other
way. We're not going to remove the syntax option to use "=", so shouldn't
we document it rather than pretending it doesn't exist?

The end of the other thread was
/messages/by-id/1370122048.6266.YahooMailNeo@web162902.mail.bf1.yahoo.com

Oh, I think you are right. I have reverted the patch. Attached is
proposed documentation for '='.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

assign.difftext/x-diff; charset=us-asciiDownload+2-2
#6Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#5)
Re: remove undocumented assign syntax from plpgsql doc

Bruce Momjian <bruce@momjian.us> writes:

Oh, I think you are right. I have reverted the patch. Attached is
proposed documentation for '='.

Meh. Variable initialization is only one of multiple cases (assignment,
GET DIAGNOSTICS; maybe others, I've not examined the grammar). Also,
if we do it like this, we're implying that both := and = are equally
preferred, which might not be the impression we want to leave.

I'd be a bit inclined to just stick a NOTE somewhere saying that "="
can be used in place of ":=" for assignment.

regards, tom lane

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#7Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#6)
Re: remove undocumented assign syntax from plpgsql doc

On Sat, Jan 11, 2014 at 02:12:49PM -0500, Tom Lane wrote:

Bruce Momjian <bruce@momjian.us> writes:

Oh, I think you are right. I have reverted the patch. Attached is
proposed documentation for '='.

Meh. Variable initialization is only one of multiple cases (assignment,
GET DIAGNOSTICS; maybe others, I've not examined the grammar). Also,
if we do it like this, we're implying that both := and = are equally
preferred, which might not be the impression we want to leave.

I'd be a bit inclined to just stick a NOTE somewhere saying that "="
can be used in place of ":=" for assignment.

OK, here is an updated doc patch that does that. The next question is
whether we want examples using '=' instead of ':='? Right now we have
them, and Pavel's patch removed them.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

assign.difftext/x-diff; charset=us-asciiDownload+1-0
#8Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#7)
Re: remove undocumented assign syntax from plpgsql doc

Bruce Momjian <bruce@momjian.us> writes:

OK, here is an updated doc patch that does that.

You're still only touching the variable-initialization case, which seems
like the least important place to document it. I'd have put it with
the assignment-statement documentation. Perhaps something like

<note>
<para>
Here, and in other contexts such as variable initialization,
the assignment operator can be written <literal>=</> as well
as <literal>:=</>. The latter is the preferred spelling, though.
</para>
</note>

The next question is
whether we want examples using '=' instead of ':='? Right now we have
them, and Pavel's patch removed them.

AFAIR, we have some of both, and I'm fine with that status quo.

regards, tom lane

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#9Pavel Stehule
pavel.stehule@gmail.com
In reply to: Tom Lane (#6)
Re: remove undocumented assign syntax from plpgsql doc

2014/1/11 Tom Lane <tgl@sss.pgh.pa.us>

Bruce Momjian <bruce@momjian.us> writes:

Oh, I think you are right. I have reverted the patch. Attached is
proposed documentation for '='.

Meh. Variable initialization is only one of multiple cases (assignment,
GET DIAGNOSTICS; maybe others, I've not examined the grammar). Also,
if we do it like this, we're implying that both := and = are equally
preferred, which might not be the impression we want to leave.

GET DIAGNOSTICS is defined by standard - and there "=" should be allowed
only - although we allow ":=" too. It is a embedded SQL statement -
although it is implemented as plpgsql statement.

Same situation is with UPDATE statement - we don't allow ":=" there.

I'd be a bit inclined to just stick a NOTE somewhere saying that "="
can be used in place of ":=" for assignment.

ok

If we accept it and we close this topic, then following comment should be
removed

assign_operator : '=' /* not documented because it might be removed
someday */
| COLON_EQUALS
;

Regards

Pavel

Show quoted text

regards, tom lane

#10Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#9)
Re: remove undocumented assign syntax from plpgsql doc

On Sat, Jan 11, 2014 at 10:06:27PM +0100, Pavel Stehule wrote:

2014/1/11 Tom Lane <tgl@sss.pgh.pa.us>

Bruce Momjian <bruce@momjian.us> writes:

Oh, I think you are right. �I have reverted the patch. �Attached is
proposed documentation for '='.

Meh. �Variable initialization is only one of multiple cases (assignment,
GET DIAGNOSTICS; maybe others, I've not examined the grammar). �Also,
if we do it like this, we're implying that both := and = are equally
preferred, which might not be the impression we want to leave.

GET DIAGNOSTICS is defined by standard - and there "=" should be allowed only -
although we allow ":=" too. It is a embedded SQL statement - although it is
implemented as plpgsql statement.

OK, docs updated for that. I assume OPEN and FOR also can take := or =,
right?

Same situation is with UPDATE statement - we don't allow ":=" there.
�

I'd be a bit inclined to just stick a NOTE somewhere saying that "="
can be used in place of ":=" for assignment.

ok

If we accept it and we close this topic, then following comment should be
removed

assign_operator : '='�� /* not documented because it might be removed someday *

Comment updated. Patch attached.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

assign.difftext/x-diff; charset=us-asciiDownload+20-19
#11Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#10)
Re: remove undocumented assign syntax from plpgsql doc

2014/1/12 Bruce Momjian <bruce@momjian.us>

On Sat, Jan 11, 2014 at 10:06:27PM +0100, Pavel Stehule wrote:

2014/1/11 Tom Lane <tgl@sss.pgh.pa.us>

Bruce Momjian <bruce@momjian.us> writes:

Oh, I think you are right. I have reverted the patch. Attached is
proposed documentation for '='.

Meh. Variable initialization is only one of multiple cases

(assignment,

GET DIAGNOSTICS; maybe others, I've not examined the grammar). Also,
if we do it like this, we're implying that both := and = are equally
preferred, which might not be the impression we want to leave.

GET DIAGNOSTICS is defined by standard - and there "=" should be allowed

only -

although we allow ":=" too. It is a embedded SQL statement - although it

is

implemented as plpgsql statement.

OK, docs updated for that. I assume OPEN and FOR also can take := or =,
right?

no, there are not used assign_operator

It is used only in DECLARE DEFAULT, ASSIGN and GET DIAGNOSTICS

Show quoted text

Same situation is with UPDATE statement - we don't allow ":=" there.

I'd be a bit inclined to just stick a NOTE somewhere saying that "="
can be used in place of ":=" for assignment.

ok

If we accept it and we close this topic, then following comment should be
removed

assign_operator : '=' /* not documented because it might be removed

someday *

Comment updated. Patch attached.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

#12Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#10)
Re: remove undocumented assign syntax from plpgsql doc

2014/1/12 Bruce Momjian <bruce@momjian.us>

On Sat, Jan 11, 2014 at 10:06:27PM +0100, Pavel Stehule wrote:

2014/1/11 Tom Lane <tgl@sss.pgh.pa.us>

Bruce Momjian <bruce@momjian.us> writes:

Oh, I think you are right. I have reverted the patch. Attached is
proposed documentation for '='.

Meh. Variable initialization is only one of multiple cases

(assignment,

GET DIAGNOSTICS; maybe others, I've not examined the grammar). Also,
if we do it like this, we're implying that both := and = are equally
preferred, which might not be the impression we want to leave.

GET DIAGNOSTICS is defined by standard - and there "=" should be allowed

only -

although we allow ":=" too. It is a embedded SQL statement - although it

is

implemented as plpgsql statement.

OK, docs updated for that. I assume OPEN and FOR also can take := or =,
right?

Same situation is with UPDATE statement - we don't allow ":=" there.

I'd be a bit inclined to just stick a NOTE somewhere saying that "="
can be used in place of ":=" for assignment.

ok

If we accept it and we close this topic, then following comment should be
removed

assign_operator : '=' /* not documented because it might be removed

someday *

Comment updated. Patch attached.

Still I am missing message about preferred syntax (or we should to enhance
GET DIAGNOSTICS doc about proprietary syntax).

PL/pgSQL, PL/SQL is mix of two languages: ADA and SQL - and their designers
decided so embedded SQL statements will be placed in native SQL syntax (and
ADA in simplified ADA syntax)

We have to find a agreement what we will prefer for PL/pgSQL:

The assign statement is "ADA" statement - ":=" is preferred

The GET DIAGNOSTICS is "SQL" statement - "=" is preferred

A newer SQL/PSM was designed differently - without this dichotomy - A
assignment is emphased by syntax SET varname = value

A proper syntax is good information what is coming from - and It is good
mental helper to understand a philosophy of stored procedures (that shares
concepts with PL/SQL). Next argument is similarity with PL/SQL and SQL PL.
This statement (GET DIAGNOSTICS) is supported on both environments and only
"=" is allowed there.

Regards

Pavel

Show quoted text

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

#13Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#11)
Re: remove undocumented assign syntax from plpgsql doc

On Sun, Jan 12, 2014 at 06:38:04AM +0100, Pavel Stehule wrote:

2014/1/12 Bruce Momjian <bruce@momjian.us>

On Sat, Jan 11, 2014 at 10:06:27PM +0100, Pavel Stehule wrote:

2014/1/11 Tom Lane <tgl@sss.pgh.pa.us>

� � Bruce Momjian <bruce@momjian.us> writes:
� � > Oh, I think you are right. �I have reverted the patch. �Attached is
� � > proposed documentation for '='.

� � Meh. �Variable initialization is only one of multiple cases

(assignment,

� � GET DIAGNOSTICS; maybe others, I've not examined the grammar). �Also,
� � if we do it like this, we're implying that both := and = are equally
� � preferred, which might not be the impression we want to leave.

GET DIAGNOSTICS is defined by standard - and there "=" should be allowed

only -

although we allow ":=" too. It is a embedded SQL statement - although it

is

implemented as plpgsql statement.

OK, docs updated for that. �I assume OPEN and FOR also can take := or =,
right?

no, there are not used assign_operator

It is used only in DECLARE DEFAULT, ASSIGN and GET DIAGNOSTICS
�

OK, patch updated and attached.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

assign.difftext/x-diff; charset=us-asciiDownload+16-15
#14Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#12)
Re: remove undocumented assign syntax from plpgsql doc

On Sun, Jan 12, 2014 at 07:00:09AM +0100, Pavel Stehule wrote:

Comment updated. �Patch attached.

Still I am missing message about preferred syntax (or we should to enhance GET
DIAGNOSTICS doc about proprietary syntax).

PL/pgSQL, PL/SQL is mix of two languages: ADA and SQL - and their designers
decided so embedded SQL statements will be placed in native SQL syntax (and ADA
in simplified ADA syntax)

We have to find a agreement what we will prefer for PL/pgSQL:

The assign statement is "ADA" statement - ":=" is preferred

The GET DIAGNOSTICS is "SQL" statement - "=" is preferred

A newer SQL/PSM was designed differently - without this dichotomy - A
assignment is emphased by syntax SET varname = value
�
A proper syntax is good information what is coming from - and It is good mental
helper to understand a philosophy of stored procedures (that shares concepts
with PL/SQL). Next argument is similarity with PL/SQL and SQL PL. This
statement (GET DIAGNOSTICS) is supported on both environments and only "=" is
allowed there.

I find the rules above so complex that I don't see how we can recommend
a best syntax. What I did in the patch I just posted was to put the
preferred operator first, but I don't see why we want to get into these
details in the docs.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#15Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#14)
Re: remove undocumented assign syntax from plpgsql doc

2014/1/13 Bruce Momjian <bruce@momjian.us>

On Sun, Jan 12, 2014 at 07:00:09AM +0100, Pavel Stehule wrote:

Comment updated. Patch attached.

Still I am missing message about preferred syntax (or we should to

enhance GET

DIAGNOSTICS doc about proprietary syntax).

PL/pgSQL, PL/SQL is mix of two languages: ADA and SQL - and their

designers

decided so embedded SQL statements will be placed in native SQL syntax

(and ADA

in simplified ADA syntax)

We have to find a agreement what we will prefer for PL/pgSQL:

The assign statement is "ADA" statement - ":=" is preferred

The GET DIAGNOSTICS is "SQL" statement - "=" is preferred

A newer SQL/PSM was designed differently - without this dichotomy - A
assignment is emphased by syntax SET varname = value

A proper syntax is good information what is coming from - and It is good

mental

helper to understand a philosophy of stored procedures (that shares

concepts

with PL/SQL). Next argument is similarity with PL/SQL and SQL PL. This
statement (GET DIAGNOSTICS) is supported on both environments and only

"=" is

allowed there.

I find the rules above so complex that I don't see how we can recommend
a best syntax. What I did in the patch I just posted was to put the
preferred operator first, but I don't see why we want to get into these
details in the docs.

just a note about preferred variant should be ok. Using ':=' in GET
DIAGNOSTICS statement is just bad idea.

Pavel

Show quoted text

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

#16Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#15)
Re: remove undocumented assign syntax from plpgsql doc

On Mon, Jan 13, 2014 at 06:10:24AM +0100, Pavel Stehule wrote:

I find the rules above so complex that I don't see how we can recommend
a best syntax. �What I did in the patch I just posted was to put the
preferred operator first, but I don't see why we want to get into these
details in the docs.

just a note about preferred variant should be ok. Using ':=' in GET DIAGNOSTICS
statement is just bad idea.

Agreed. I added a sentence in the first mention of GET DIAGNOSTICS, and
indicated it was generic for that command. What I also added was your
description of when to use := and =, but I put it in the C comments so
we have a record of it and if we need to expand the description or
behavior later.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

assign.difftext/x-diff; charset=us-asciiDownload+23-20
#17Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#16)
Re: remove undocumented assign syntax from plpgsql doc

2014/1/13 Bruce Momjian <bruce@momjian.us>

On Mon, Jan 13, 2014 at 06:10:24AM +0100, Pavel Stehule wrote:

I find the rules above so complex that I don't see how we can

recommend

a best syntax. What I did in the patch I just posted was to put the
preferred operator first, but I don't see why we want to get into

these

details in the docs.

just a note about preferred variant should be ok. Using ':=' in GET

DIAGNOSTICS

statement is just bad idea.

Agreed. I added a sentence in the first mention of GET DIAGNOSTICS, and
indicated it was generic for that command. What I also added was your
description of when to use := and =, but I put it in the C comments so
we have a record of it and if we need to expand the description or
behavior later.

I'll be more happy if a comment about GET DIAGNOSTICS statement will be in
user space.

Regards

Pavel

Show quoted text

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

#18Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#17)
Re: remove undocumented assign syntax from plpgsql doc

On Mon, Jan 13, 2014 at 03:36:18PM +0100, Pavel Stehule wrote:

Agreed. �I added a sentence in the first mention of GET DIAGNOSTICS, and
indicated it was generic for that command. �What I also added was your
description of when to use := and =, but I put it in the C comments so
we have a record of it and if we need to expand the description or
behavior later.

I'll be more happy if a comment about GET DIAGNOSTICS statement will be in user
space.

I thought you would say that. :-) I don't see how this detail makes
sense in the sections related to the syntax usage, so I looked in the
section Porting from Oracle PL/SQL, and I don't see how it fits there
either.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#19Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#18)
Re: remove undocumented assign syntax from plpgsql doc

2014/1/14 Bruce Momjian <bruce@momjian.us>

On Mon, Jan 13, 2014 at 03:36:18PM +0100, Pavel Stehule wrote:

Agreed. I added a sentence in the first mention of GET DIAGNOSTICS,

and

indicated it was generic for that command. What I also added was

your

description of when to use := and =, but I put it in the C comments

so

we have a record of it and if we need to expand the description or
behavior later.

I'll be more happy if a comment about GET DIAGNOSTICS statement will be

in user

space.

I thought you would say that. :-) I don't see how this detail makes
sense in the sections related to the syntax usage, so I looked in the
section Porting from Oracle PL/SQL, and I don't see how it fits there
either.

:)

just notice - sorry for my English

==Assign==
Using ":=" is preffered as assign statement due conformity with ADA
language (a plpgsql ancestor).

==GET DIAGNOSTICS==

Using "=" is highly preferred due conformity with ANSI/SQL

Regards

Pavel

Show quoted text

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

#20Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#19)
Re: remove undocumented assign syntax from plpgsql doc

On Wed, Jan 15, 2014 at 11:07:29AM +0100, Pavel Stehule wrote:

I thought you would say that. �:-) �I don't see how this detail makes
sense in the sections related to the syntax usage, so I looked in the
section Porting from Oracle PL/SQL, and I don't see how it fits there
either.

:)

just notice - sorry for my English

==Assign==
Using ":=" is preffered as assign statement due conformity with ADA language (a
plpgsql ancestor).

==GET DIAGNOSTICS==

Using "=" is highly preferred due conformity with ANSI/SQL

The problem is that these are philosophical issues that are not normally
covered in our docs. What I have done is to add a mention of which
option is compliant to the new text. Patch attached.

Is GET DIAGNOSTICS defined in the standard for SQL/PSM only or for
generic SQL?

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

assign.difftext/x-diff; charset=us-asciiDownload+24-20
#21Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#20)
#22Pavel Stehule
pavel.stehule@gmail.com
In reply to: Pavel Stehule (#21)
#23Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#21)
#24Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#23)
#25Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#24)
#26Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#25)
#27Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#23)