What is the meaning of the N string operator ? - Mailing list pgsql-docs

From Danilo Fortunato
Subject What is the meaning of the N string operator ?
Date
Msg-id 5574AD22.8010508@gmail.com
Whole thread Raw
Responses Re: What is the meaning of the N string operator ?  (Andreas Seltenreich <seltenreich@gmx.de>)
Re: What is the meaning of the N string operator ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: What is the meaning of the N string operator ?  (Danilo Fortunato <danilo.fortunato.2@gmail.com>)
List pgsql-docs
In the SQL code related to Greenplum Database (which is based on
PostgreSQL) generated by a query and reporting tool, a noticed a "N"
operator put before a lot of strings.
For example:

case  when column_a <> N'#' then column_a
       when column_b <> N'#' then column_b
       else NULL
end

I executed this SQL code, and I found out that it is valid.

In the PostgreSQL documentation I didn't find a description of this
operator (though it is not easy to search for).
However, I found a description of the E (escape) and B (binary) string
operators.

Can anybody explain the meaning of the N string operator ?
Is there a section in the PostgreSQL documentation that describes it ?

Thanks,
Danilo Fortunato


pgsql-docs by date:

Previous
From: Andreas Seltenreich
Date:
Subject: [PATCH] doc: Fix typo in logicaldecoding.sgml.
Next
From: Andreas Seltenreich
Date:
Subject: Re: What is the meaning of the N string operator ?