Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The documentation for PL/pgSQL says, that declaration and assignment to variables is done with :=. But a simple, shorter and more modern (see footnote) = seems to work as expected:

    CREATE OR REPLACE FUNCTION foo() RETURNS int AS $$
    DECLARE
      i int;
    BEGIN
      i = 0;  
      WHILE NOT i = 25 LOOP
          i = i + 1;
          i = i * i;
      END LOOP;
      RETURN i;
    END;
    $$ LANGUAGE plpgsql;

    > SELECT foo();
    25

Please note, that Pl/pgSQL can distinguish assignment and comparison clearly as shown in the line

      WHILE NOT i = 25 LOOP

So, the questions are:

  • Didn't I find some section in the docs which mention and/or explains this?
  • Are there any known consequences using = instead of :=?

Edit / Footnote:

Please take the "more modern" part with a wink like in A Brief, Incomplete, and Mostly Wrong History of Programming Languages:

1970 - Niklaus Wirth creates Pascal, a procedural language. Critics immediately denounce Pascal because it uses "x := x + y" syntax instead of the more familiar C-like "x = x + y". This criticism happens in spite of the fact that C has not yet been invented.

1972 - Dennis Ritchie invents a powerful gun that shoots both forward and backward simultaneously. Not satisfied with the number of deaths and permanent maimings from that invention he invents C and Unix.

share|improve this question
2  
It's indeed strange that it works. You might want to post that to the PG mailing list so that the PG developers can say something regarding this. – a_horse_with_no_name Sep 18 '11 at 20:59
Is there any advantage to using = rather than :=? Being "more modern" doesn't strike me as an advantage. – Keith Thompson Sep 18 '11 at 21:17
Usualy I'd like to concur. But when was the last computer language invented, which a) is halfway widely used and b) uses ':=' for assignment? I think that must have been already several decades away. On the other hand I have set that in italics to make it somewhat ;-) – A.H. Sep 18 '11 at 21:24
Anecdotally, I've run in to no problems using only = instead of :=. It was initially an accident (habbit from other languages), but I noticed PostgreSQL was willing to create the functions and that they ran fine, so I've stuck with it. – Matt Sep 19 '11 at 11:51
1  
@A.H.You should look at xquery - it was invented some time in the last 5-10 years, is under active development and uses ":=" – Mike Sokolov Sep 22 '11 at 18:49
show 1 more comment

3 Answers

up vote 11 down vote accepted

In PL/PgSQL parser, assignment operator is defined as

assign_operator : '='
                | COLON_EQUALS
                ;

This is an undocumented legacy feature. Present in PostgreSQL source code at least since 1998. It's planned to be removed but still kept in because some people rely on it.

See the message from Tom Lane (core Pg developer): http://archives.postgresql.org/pgsql-bugs/2011-08/msg00140.php

First introduction of this (according to official Git repo): http://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=863a62064cfc2b706dd6ab45487d15cc33cedb35

So, to answer your questions straight:

Didn't I find some section in the docs which mention and/or explains this?

You did not find it because it's undocumented and should not be relied on.

Are there any known consequences using = instead of :=.

There are no side consequences of using =, but you should use := for assignment to make your code future-proof.

share|improve this answer
Thanks for the thorough research. I find it very interesting, that the question on the PostgreSQL mailinglist came up just a couple of weeks before my question was posted. Seems, it was time for that ;-) – A.H. Oct 3 '11 at 22:16

Reading the Postgresql 9 documentation:

This page lists "=" as an assignment operator in the table on operator precedence.

But strangely this page (assignment operator documentation) doesn't mention it.

share|improve this answer
That's exactly the point: The first link is the generic SQL part and = is the comparison operator in this context as shown in the example. The second link is about PL/pgSQL and there the assignment is described as :=. The question is still open. :-) – A.H. Sep 22 '11 at 19:13
I must correct myself halfway: The first link mentions "equality, assignment" in the precedence table, but in SQL context assignment means UPDATE table SET column **=** value. – A.H. Sep 22 '11 at 19:36
Yes I see your point - the doc is about SQL, not the procedural SQL wrapper language. – Mike Sokolov Sep 23 '11 at 1:30

A partial answer to my own question:

The PL/pgSQL section Obtaining the Result Status shows two examples using a special syntax:

GET DIAGNOSTICS variable = item [ , ... ]; 
GET DIAGNOSTICS integer_var = ROW_COUNT;

I tried both := and = and they work both.

But GET DIAGNOSTICS is special syntax, so one can argue, that this is also not a normal PL/pgSQL assignment operation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.