Former-commit-id:4f112968dd
[formerly0ac8d01147
] [formerly660ca8fcec
] [formerly4f112968dd
[formerly0ac8d01147
] [formerly660ca8fcec
] [formerlybac07c65a1
[formerly660ca8fcec
[formerly 41ead90acf0d06e959e513e5a25869eb6e18150a]]]] Former-commit-id:bac07c65a1
Former-commit-id:a1b0b399a9
[formerly7c11dea797
] [formerly bede60a174f734fd8be3cff1da228268a9551c43 [formerlyec3e8b6411
]] Former-commit-id: 116850bed663cea0cef9ee792538f13f2a182c5b [formerly7c145f4fe9
] Former-commit-id:dc5522e6ab
32 lines
1.2 KiB
PL/PgSQL
32 lines
1.2 KiB
PL/PgSQL
/**
|
|
* This software was developed and / or modified by Raytheon Company,
|
|
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
*
|
|
* U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
* This software product contains export-restricted data whose
|
|
* export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
* to non-U.S. persons whether in the United States or abroad requires
|
|
* an export license or other authorization.
|
|
*
|
|
* Contractor Name: Raytheon Company
|
|
* Contractor Address: 6825 Pine Street, Suite 340
|
|
* Mail Stop B8
|
|
* Omaha, NE 68106
|
|
* 402.291.0100
|
|
*
|
|
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
* further licensing information.
|
|
**/
|
|
\set ON_ERROR_STOP 1
|
|
\connect metadata;
|
|
|
|
-- Start a transaction
|
|
BEGIN;
|
|
|
|
-- Update dataSetType="Grid" references to dataSetType="GRID"
|
|
update ebxml.value set stringvalue = regexp_replace(stringvalue, 'dataSetType="Grid"', 'dataSetType="GRID"', 'g');
|
|
-- Update dataType="Grid" references to dataType="GRID"
|
|
update ebxml.value set stringvalue = regexp_replace(stringvalue, 'dataType="Grid"', 'dataType="GRID"', 'g');
|
|
|
|
-- Commit the transaction
|
|
END;
|