Project

General

Profile

« Previous | Next » 

Revision 10185

schemas/util.sql: added table_nulls_mapped__get(), which gets whether a table's NULL-equivalent strings have been replaced with NULL

View differences:

schemas/util.sql
1370 1370

  
1371 1371

  
1372 1372
--
1373
-- Name: table_nulls_mapped__get(regclass); Type: FUNCTION; Schema: util; Owner: -
1374
--
1375

  
1376
CREATE FUNCTION table_nulls_mapped__get(table_ regclass) RETURNS boolean
1377
    LANGUAGE sql STABLE STRICT
1378
    AS $_$
1379
SELECT util.table_flag__get($1, 'nulls_mapped')
1380
$_$;
1381

  
1382

  
1383
--
1384
-- Name: FUNCTION table_nulls_mapped__get(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1385
--
1386

  
1387
COMMENT ON FUNCTION table_nulls_mapped__get(table_ regclass) IS 'gets whether a table''s NULL-equivalent strings have been replaced with NULL';
1388

  
1389

  
1390
--
1373 1391
-- Name: table_nulls_mapped__set(regclass); Type: FUNCTION; Schema: util; Owner: -
1374 1392
--
1375 1393

  

Also available in: Unified diff