IvorySQL/IvorySQL : guide éditorial fondé sur le README
Un guide fondé sur le README, les métadonnées et la licence de IvorySQL/IvorySQL.
Périmètre du projet
Le README décrit IvorySQL/IvorySQL comme « Open Source Oracle Compatible PostgreSQL. ». Cette page reste limitée aux faits vérifiables dans le dépôt. Les étoiles, forks et badges indiquent une attention, pas une preuve de qualité. Sous « README », la source indique : IvorySQL is developed based on PostgreSQL. IvorySQL is advanced, fully featured, open-source Oracle-compatible PostgreSQL with a firm commitment to always remain 100% compatible and a drop-in replacement for the latest PostgreSQL.. Cela fixe un périmètre déclaré, pas un test en production.
Cas d'usage adaptés
La section « Developer Formatting hooks and CI: » aide à vérifier si le projet répond au besoin : The hook depends only on in-tree tools src/tools/pgindent and src/tools/pgbsdindent. On commit it formats staged C/C++ files with pgindent and re-adds them to the staged area.. Si ce besoin ne correspond pas au vôtre, la popularité ne suffit pas. Les noms, commandes et composants sont conservés pour permettre une comparaison directe avec la source primaire. Le README fournit aussi ce point vérifiable : A pre-commit formatting hook is provided at .githooks/pre-commit. Enable it with git config core.hooksPath .githooks, or run make code-format (equivalently bash tools/enable-git-hooks.sh).. Il peut guider le premier test, sans remplacer une vérification dans l'environnement prévu.
Fonctionnement
Le fonctionnement est réparti dans des sections comme « We are committed to following the principles of the open source way ». La source fournit notamment : We are committed to abiding by the principles of open-source ways and we strongly believe in building a healthy and inclusive community. We maintain that good ideas can come from anywhere, and the best ideas should win.. Les détails absents sur l'architecture, les performances ou la sécurité ne sont pas inventés. Avant une mise en service, vérifiez l'arborescence, la configuration et l'historique des releases.
Installation et premier lancement
Commencez l'installation avec l'entrée documentée dans le README. La commande vérifiable est : # Start the development containers docker compose up -d # Enter the development container docker compose exec dev bash # Configure and build IvorySQL ./configure --prefix=/home/ivorysql/ivorysql \ --enable-debug --enable-cassert \ --with-uuid=e2fs --with-libxml make -j$(nproc) make install # Initialize database in Oracle mode initdb -D data_ora -m oracle # Start the server pg_ctl -D data_ora start # Run tests make oracle-check Si aucune commande n'est fournie, cette page n'en fabrique pas. Consultez « Installation » pour les dépendances, les ports par défaut et l'initialisation du premier lancement.