Change-Id: Ibc77133cd1b016ef85bae61e47e373a30e6e4d23 Former-commit-id:bbdd7c01a7
[formerly50fb33488c
] [formerly62e215eb89
] [formerlybbdd7c01a7
[formerly50fb33488c
] [formerly62e215eb89
] [formerly6143d43329
[formerly62e215eb89
[formerly 892c0f28a13d53118141efe14762deebe169d7ba]]]] Former-commit-id:6143d43329
Former-commit-id:d388968728
[formerlye2954e54db
] [formerly 1c9d2bd0f67d7550e07bd561196d5aebc3919b29 [formerly32f7bd8735
]] Former-commit-id: ff44d778e1b13fc9d813d4322f74d4f8aeebf256 [formerly28eb882fb6
] Former-commit-id:bb580d8e7c
30 lines
1,007 B
SQL
30 lines
1,007 B
SQL
/**
|
|
* 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.
|
|
**/
|
|
CREATE INDEX "gridinfoSecondryId_idx"
|
|
ON grid_info
|
|
USING btree
|
|
(secondaryid)
|
|
WHERE secondaryid IS NOT NULL;
|
|
|
|
CREATE INDEX "gridinfoEnsembleId_idx"
|
|
ON grid_info
|
|
USING btree
|
|
(ensembleid)
|
|
WHERE ensembleid IS NOT NULL;
|