From 6ad4a49e7a9b159a70b35971027b36528c1911c3 Mon Sep 17 00:00:00 2001 From: Sho Nakatani Date: Mon, 13 Jun 2022 14:43:15 +0900 Subject: [PATCH] feat: add BLOB type --- docs/learn-springql/pipeline/data-type.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/learn-springql/pipeline/data-type.md b/docs/learn-springql/pipeline/data-type.md index 349f303..6596740 100644 --- a/docs/learn-springql/pipeline/data-type.md +++ b/docs/learn-springql/pipeline/data-type.md @@ -64,4 +64,8 @@ SpringQL currently supports the following data types. ## Binary -Not supported yet. +| Language | Type name | +| -------- | ----------------------------- | +| SQL | BLOB | +| Rust | `Vec` | +| C | `const void *` , int (length) |