Project

General

Profile

« Previous | Next » 

Revision 10183

schemas/util.sql: added table_nulls_mapped__set(), which sets that a table's NULL-equivalent strings have been replaced with NULL

View differences:

schemas/util.sql
1351 1351

  
1352 1352

  
1353 1353
--
1354
-- Name: table_nulls_mapped__set(regclass); Type: FUNCTION; Schema: util; Owner: -
1355
--
1356

  
1357
CREATE FUNCTION table_nulls_mapped__set(table_ regclass) RETURNS void
1358
    LANGUAGE sql STRICT
1359
    AS $_$
1360
SELECT util.table_flag__set($1, 'nulls_mapped')
1361
$_$;
1362

  
1363

  
1364
--
1365
-- Name: FUNCTION table_nulls_mapped__set(table_ regclass); Type: COMMENT; Schema: util; Owner: -
1366
--
1367

  
1368
COMMENT ON FUNCTION table_nulls_mapped__set(table_ regclass) IS 'sets that a table''s NULL-equivalent strings have been replaced with NULL.
1369
idempotent.';
1370

  
1371

  
1372
--
1354 1373
-- Name: table_schema(regclass); Type: FUNCTION; Schema: util; Owner: -
1355 1374
--
1356 1375

  

Also available in: Unified diff