Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit b452861

Browse files
authored
Update README.md
1 parent 656d8ba commit b452861

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ NOTE: The Status enumeration may not be exposed in future versions.
111111
- LSEG = 601 --- Postgresql data type of type `lseg`.
112112
- LINE = 628 --- Postgresql data type of type `line`.
113113
- CIRCLE = 718 --- Postgresql data type of type `circle`.
114+
- DATE = 1082 --- Postgresql data type of type `date`.
115+
- TIME = 1266 --- Postgresql data type of type `time`.
114116

115117
NOTE: Not all PostgreSQL data types are supported by PostgreSQLClient, but will be in a future release.
116118

@@ -329,7 +331,7 @@ Each row contains the value of 2 fields: The row identifier and a character stri
329331
| `null` | `null` |
330332
| `smallint`, `integer`, `bigint` | `int` |
331333
| `real`, `double precision` | `float` |
332-
| `text`, `character` *alias* `char`, `character varying` *alias* `varchar`, `json`, `jsonb`, `xml`, `cidr`, `inet`, `macaddr`, `macaddr8`, `bit`, `bit varying`, `uuid` | `String` |
334+
| `text`, `character` *alias* `char`, `character varying` *alias* `varchar`, `json`, `jsonb`, `xml`, `cidr`, `inet`, `macaddr`, `macaddr8`, `bit`, `bit varying`, `uuid`, `date`, `time` | `String` |
333335
| `bitea` | `PoolByteArray` |
334336
| `point` | `Vector2` |
335337
| `box` | `Rect2` |
@@ -338,6 +340,7 @@ Each row contains the value of 2 fields: The row identifier and a character stri
338340

339341
Note:
340342
- Not all PostgreSQL types are supported yet.
343+
- I may later change the date and time type to Dictionary, but I'm not sure...
341344

342345
---
343346

0 commit comments

Comments
 (0)