Re: Document NULL - Mailing list pgsql-hackers

From Marcos Pegoraro
Subject Re: Document NULL
Date
Msg-id CAB-JLwbQr487AV7s0mTGLKFJ1uBVPNEV_i5u4qiAKp+hsE+bPw@mail.gmail.com
Whole thread Raw
In response to Re: Document NULL  ("David G. Johnston" <david.g.johnston@gmail.com>)
Responses Re: Document NULL
List pgsql-hackers
Em qui., 21 de nov. de 2024 às 12:04, David G. Johnston <david.g.johnston@gmail.com> escreveu:

Typo in NuLl, mixed upper and lower case.

SELECT
    NULL AS "Literal Null Value",
    pg_typeof(null) AS "Type of Null",
    pg_typeof(NuLl::text) AS "Type of Cast null",
    cast(null as text) AS "Cast null value";

should be 
    pg_typeof(null::text) AS "Type of Cast Null",

pgsql-hackers by date:

Previous
From: Marcos Pegoraro
Date:
Subject: Use or not record count on examples
Next
From: Joe Conway
Date:
Subject: Re: Replace current implementations in crypt() and gen_salt() to OpenSSL