add maps
This commit is contained in:
parent
2448ccf641
commit
6a90cc4b32
@ -30,7 +30,7 @@ FROM
|
|||||||
$j$::jsonb
|
$j$::jsonb
|
||||||
, 1)
|
, 1)
|
||||||
) x;
|
) x;
|
||||||
*/
|
|
||||||
DELETE FROM tps.map_rm where target = 'Parse Descr';
|
DELETE FROM tps.map_rm where target = 'Parse Descr';
|
||||||
INSERT INTO
|
INSERT INTO
|
||||||
tps.map_rm
|
tps.map_rm
|
||||||
@ -60,4 +60,93 @@ FROM
|
|||||||
}
|
}
|
||||||
$j$::jsonb
|
$j$::jsonb
|
||||||
, 2)
|
, 2)
|
||||||
|
) x;
|
||||||
|
|
||||||
|
|
||||||
|
DELETE FROM tps.map_rm where target = 'Extract OBI';
|
||||||
|
INSERT INTO
|
||||||
|
tps.map_rm
|
||||||
|
SELECT *
|
||||||
|
FROM
|
||||||
|
(VALUES
|
||||||
|
('PNCC', 'Extract OBI',
|
||||||
|
$j$
|
||||||
|
{
|
||||||
|
"name":"Extract OBI",
|
||||||
|
"description":"pull out whatever follows OBI in the description until atleast 3 capital letters followed by a colon are encountered",
|
||||||
|
"defn": [
|
||||||
|
{
|
||||||
|
"key": "{Description}",
|
||||||
|
"field": "obi",
|
||||||
|
"regex": "OBI:(.*?)(?=[A-Z]{3,}?:|$)",
|
||||||
|
"flag":"",
|
||||||
|
"retain":"y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"function":"extract",
|
||||||
|
"map":"no",
|
||||||
|
"where": [
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer DB - Wire"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer CR-Other"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Intl Money Transfer Debits"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer DB - Other"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer CR-Wire"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
$j$::jsonb
|
||||||
|
, 2)
|
||||||
|
) x;
|
||||||
|
*/
|
||||||
|
DELETE FROM tps.map_rm where target = 'Extract RFB';
|
||||||
|
INSERT INTO
|
||||||
|
tps.map_rm
|
||||||
|
SELECT *
|
||||||
|
FROM
|
||||||
|
(VALUES
|
||||||
|
('PNCC', 'Extract RFB',
|
||||||
|
$j$
|
||||||
|
{
|
||||||
|
"name":"Extract RFB",
|
||||||
|
"description":"pull out whatever follows RFB in the description until atleast 3 capital letters followed by a colon are encountered",
|
||||||
|
"defn": [
|
||||||
|
{
|
||||||
|
"key": "{Description}",
|
||||||
|
"field": "rfb",
|
||||||
|
"regex": "RFB:(.*?)(?=[A-Z]{3,}?:|$)",
|
||||||
|
"flag":"",
|
||||||
|
"retain":"y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"function":"extract",
|
||||||
|
"map":"no",
|
||||||
|
"where": [
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer DB - Wire"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer CR-Other"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Intl Money Transfer Debits"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer DB - Other"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Transaction":"Money Transfer CR-Wire"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
$j$::jsonb
|
||||||
|
, 2)
|
||||||
) x;
|
) x;
|
Loading…
Reference in New Issue
Block a user