-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for lost sub-second when returning date. Needs updated PMGD.
- Loading branch information
1 parent
05328e4
commit a43c982
Showing
4 changed files
with
122 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[ | ||
{ | ||
"AddEntity": | ||
{ | ||
|
||
"_ref": 1, | ||
"class": "Patient", | ||
|
||
"properties": { | ||
"Email":"[email protected]", | ||
"Age": 83, | ||
"timestamp": 1544069566053, | ||
"Birthday":{"_date":"1936-10-01T17:59:24.001-07:00"}, | ||
"Name":"Mark", | ||
"fv": {"_blob":"Raghed----ghjhsglfhwa"} | ||
} | ||
} | ||
|
||
}, | ||
{ | ||
"AddEntity": | ||
{ | ||
"_ref": 2, | ||
"class": "Patient", | ||
|
||
"properties": { | ||
"Email":"[email protected]", | ||
"Age": 73, | ||
"timestamp": 2544069566053, | ||
"Birthday":{"_date":"1946-10-01T17:49:24.009010-07:00"}, | ||
"fv":{"_blob" :"Ahmad----ghjhsglfhwa"}, | ||
"Name": "Kai" | ||
|
||
} | ||
} | ||
|
||
}, | ||
{ | ||
"AddConnection": | ||
{ | ||
"ref1" : 1, | ||
"ref2" : 2, | ||
"class": "Married", | ||
"properties":{ | ||
"since" : {"_date":"Sat Sep 1 19:59:24 PDT 1956"}, | ||
"fv": {"_blob":"----ghjhsglfhwa"}, | ||
"city" : "Boston", | ||
"location" : "residence" | ||
} | ||
} | ||
|
||
}, | ||
{ | ||
"FindEntity" : { | ||
"class" : "Patient", | ||
"constraints": { | ||
"Age": ["<", 100 ] | ||
}, | ||
"results": { | ||
"list":["Name","Birthday"], | ||
"sort" : { | ||
"key" : "Age", | ||
"order" : "descending" | ||
} | ||
} | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// VDMS Config File | ||
// This is the run-time config file | ||
// Sets database paths and other parameters | ||
{ | ||
// Network | ||
"port": 55555, | ||
|
||
// Database paths | ||
"pmgd_path": "datatypecheck_db" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters