From bce9758e32d0c3029a26efb486a342ff05f6df72 Mon Sep 17 00:00:00 2001
From: znone <glyc@sina.com.cn>
Date: Sat, 27 Feb 2021 12:57:25 +0000
Subject: [PATCH] PostgreSQL: support array type

---
 README.md |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index b235fd1..a495c81 100644
--- a/README.md
+++ b/README.md
@@ -411,13 +411,14 @@
 | smallint | int16_t |
 | bigint | int64_t |
 | real | float |
-| DOUBLE | double |
+| double | double |
 | text | const char*<br>std::string |
 | bytea | qtl::const_blob_data<br>std::vector<uint8_t> |
 | oid | qtl::postgres::large_object |
 | date | qtl::postgres::date |
 | timestamp | qtl::postgres::timestamp |
 | interval | qtl::postgres::interval |
+| array | std::vector |
 
 ### PostgreSQL field data binding
 
@@ -428,13 +429,14 @@
 | smallint | int16_t |
 | bigint | int64_t |
 | real | float |
-| DOUBLE | double |
+| double | double |
 | text | char[N]<br>std::array&lt;char, N&gt;<br>std::string |
 | bytea | qtl::const_blob_data<br>qtl::blob_data<br>std::vector<uint8_t> |
 | oid | qtl::postgres::large_object |
 | date | qtl::postgres::date |
 | timestamp | qtl::postgres::timestamp |
 | interval | qtl::postgres::interval |
+| array | std::vector |
 
 ### C ++ classes related to PostgreSQL
 - qtl::postgres::database

--
Gitblit v1.9.3