{"id":29905490,"url":"https://github.com/project-tsurugi/ogawayama","last_synced_at":"2026-05-19T04:05:13.887Z","repository":{"id":198160765,"uuid":"198964071","full_name":"project-tsurugi/ogawayama","owner":"project-tsurugi","description":"A module responsible for communication when accessing tsurugidb via PostgreSQL FDW","archived":false,"fork":false,"pushed_at":"2025-07-30T02:25:48.000Z","size":1130,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-07-30T04:38:40.678Z","etag":null,"topics":["forign-data-wrapper","postgresql","sql","tsurugidb"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/project-tsurugi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-07-26T06:57:45.000Z","updated_at":"2025-07-30T02:25:49.000Z","dependencies_parsed_at":"2023-11-27T11:26:27.735Z","dependency_job_id":"58571e98-d6ca-4515-ab34-c93a0ad7c0f0","html_url":"https://github.com/project-tsurugi/ogawayama","commit_stats":null,"previous_names":["project-tsurugi/ogawayama"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/project-tsurugi/ogawayama","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Fogawayama","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Fogawayama/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Fogawayama/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Fogawayama/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/project-tsurugi","download_url":"https://codeload.github.com/project-tsurugi/ogawayama/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Fogawayama/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268282397,"owners_count":24225164,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["forign-data-wrapper","postgresql","sql","tsurugidb"],"created_at":"2025-08-01T19:14:07.126Z","updated_at":"2026-05-19T04:05:13.823Z","avatar_url":"https://github.com/project-tsurugi.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ogawayama PostgreSQL FDW interface\n\n## Requirements\n\n* CMake `\u003e= 3.16`\n* C++ Compiler `\u003e= C++17`\n* access to jogasaki and manager/metadata-manager\n* and see *Dockerfile* sectioni\n\n```sh\n# retrieve third party modules\ngit submodule update --init --recursive\n```\n\n### Dockerfile\n\n```dockerfile\nFROM ubuntu:22.04\n\nRUN apt update -y \u0026\u0026 apt install -y git build-essential cmake ninja-build libboost-system-dev libboost-thread-dev libboost-serialization-dev libgoogle-glog-dev libgflags-dev protobuf-compiler protobuf-c-compiler libprotobuf-dev libssl-dev nlohmann-json3-dev\n```\n\noptional packages:\n\n* `doxygen`\n* `graphviz`\n* `clang-tidy-14`\n\n### Install modules\n\n#### tsurugidb modules\n\nThis requires below [tsurugidb](https://github.com/project-tsurugi/tsurugidb) modules to be installed.\n\n* [metadata-manager](https://github.com/project-tsurugi/metadata-manager)\n* [message-manager](https://github.com/project-tsurugi/message-manager)\n\n## How to build\n\n```sh\ngit clone git@github.com:project-tsurugi/jogasaki.git third_party/temp_jogasaki\ncd third_party/temp_jogasaki\nmkdir build\ncd build\ncmake -DINSTALL_API_ONLY=ON ..\ncmake --build . --target install\ncd ../../..\nmkdir build\ncd build\ncmake -G Ninja -DCMAKE_BUILD_TYPE=Debug ..\ncmake --build . --target install\n```\n\navailable options:\n* `-DBUILD_STUB_ONLY=ON` - build the stub only\n* `-DBUILD_BRIDGE_ONLY=ON` - build the bridge only\n* `-DBUILD_TESTS=OFF` - never build test programs\n* `-DBUILD_EXAMPLES=ON` - also build example programs\n* `-DBUILD_STRICT=OFF` - don't treat compile warnings as build errors\n* `-DCMAKE_PREFIX_PATH=\u003cinstallation directory\u003e` - indicate prerequiste installation directory\n* `-DSHARKSFIN_IMPLEMENTATION=\u003cimplementation name\u003e` - switch sharksfin implementation. Available options are `memory` and `shirakami` (default: `shirakami`)\n* for debugging only\n  * `-DENABLE_SANITIZER=OFF` - disable sanitizers (requires `-DCMAKE_BUILD_TYPE=Debug`)\n  * `-DENABLE_UB_SANITIZER=ON` - enable undefined behavior sanitizer (requires `-DENABLE_SANITIZER=ON`)\n  * `-DENABLE_COVERAGE=ON` - enable code coverage analysis (requires `-DCMAKE_BUILD_TYPE=Debug`)\n\n## License\n\n[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-tsurugi%2Fogawayama","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproject-tsurugi%2Fogawayama","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-tsurugi%2Fogawayama/lists"}