Release test

This commit is contained in:
Adrien Bouvais 2025-01-12 17:16:16 +01:00
parent 0b871ecc93
commit bd4cc98797
2 changed files with 12 additions and 10 deletions

View File

@ -4,22 +4,19 @@ ZipponDB is a relational database built from the ground up in Zig, with zero ext
## Key Features ## Key Features
- **Relational Model (Coming Soon):** ZipponDB is being developed to support easy relationship. - **Relational Model:** ZipponDB is being developed to support easy relationship.
- **Simple Query Language:** A straightforward and minimalist query language makes- interacting with the database easy. - **Simple Query Language:** A straightforward and minimalist query language.
- **Lightweight and Fast:** ZipponDB's small footprint and efficient design ensure- quick performance. - **Lightweight and Fast:** ZipponDB's small footprint and efficient design ensure quick performance.
- **Portable:** Built with Zig, ZipponDB can be easily compiled and deployed across- various platforms. - **Portable:** Built with Zig, ZipponDB can be easily compiled and deployed across various platforms.
## Why Choose ZipponDB? ## Why Choose ZipponDB?
If you need a database that is: If you need a database that is:
- **Easy to integrate:** ZipponDB's minimal design and simple query language make- integration into your projects straightforward. - **Easy to integrate:** ZipponDB's minimal design and simple query language make integration into your projects straightforward.
- **Resource-efficient:** Its lightweight nature minimizes resource consumption,- making it suitable for resource-constrained environments. - **Resource-efficient:** Its lightweight nature minimizes resource consumption, making it suitable for resource-constrained environments.
- **Reliable:** Built with a focus on correctness and stability. - **Reliable:** Built with a focus on correctness and stability.
- **Cross-platform:** Deployable wherever Zig is supported. - **Cross-platform:** Deployable wherever Zig is supported.
Then ZipponDB might be the right choice for you. Then ZipponDB might be the right choice for you.
## Current Status and Future Plans
While still under development, ZipponDB is actively being improved. Relational features are currently in progress and will be available soon. Stay tuned for updates and new releases! We encourage feedback from the community.

View File

@ -125,8 +125,13 @@ test "GRAB Relationship AdditionalData Filtered" {
} }
test "GRAB Relationship dot" { test "GRAB Relationship dot" {
// DO I add this ? I'm not sure about this feature
const db = DB{ .path = "test1", .schema = "schema/example" }; const db = DB{ .path = "test1", .schema = "schema/example" };
try testParsing(db, "GRAB User.best_friend {}"); // try testParsing(db, "GRAB User.best_friend {}");
// try testParsing(db, "GRAB User.best_friend.best_friend {}");
// try testParsing(db, "GRAB User.best_friend.posts {}");
// try testParsing(db, "GRAB User.best_friend.posts.comments {}");
try testParsing(db, "GRAB User [1] {}");
} }
test "DELETE" { test "DELETE" {