오류

2016-09-22 5 views
1

내가 내 프로젝트에 대한 Fhirbase API를 사용하려는 내가 fhirbase 서버를 설치하고 문서에 나와있는 모든 단계를 수행하는 http://fhirbase.github.io/installation.html (로컬)이 링크,오류

를 참조하지만 난 실행하려고 할 때 첫 번째 API SELECT fhir_create_storage ('{ "resourceType": "Patient"}'); 그것은 내게 오류를 줘.

ERROR: function fhir_create_storage(unknown) does not exist 
LINE 1: SELECT fhir_create_storage('{"resourceType": "Patient"}'); 
^ 
HINT: No function matches the given name and argument types. You might need to add explicit type casts. 

나는 그것을 어떻게 풀 수 있습니까?

답변

1

사용자는 SET plv8.start_proc = 'plv8_init';으로 초기화 plv8 기계를 사용해야합니다. 이 작업은 새로운 연결에서 수행되어야하므로이 명령문을 처음으로 다시 연결하거나 postgresql.conf에 넣으십시오. http://pgxn.org/dist/plv8/doc/plv8.html#Start-up.procedure

+1

http://fhirbase.github.io/installation.html (로컬 버전)을 사용하여 fhirbase를 설치합니다. 그건 구식이며 귀하의 제안에 따라 내가 fhirbase https://github.com/fhirbase/fhirbase-plv8을 사용하여 설치하고 그게 나를 위해 일하고있어. 고맙습니다. –