branch: elpa/pg
commit a26380d204834fda6cde17f3d715294979043dc3
Author: Eric Marsden <[email protected]>
Commit: Eric Marsden <[email protected]>
Add missing OIDs for arrays of time-related types.
Data used as a fallback for PostgreSQL variants where the pg_type table
does not seem to contain
accurate information.
---
pg.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pg.el b/pg.el
index 40f8ea5d043..7bf9ea5dbf0 100644
--- a/pg.el
+++ b/pg.el
@@ -2516,7 +2516,10 @@ PostgreSQL and Emacs. CON should no longer be used."
("_text" "1009")
("_float4" "1021")
("_float8" "1022")
+ ("_date" "1182")
+ ("_timestamptz" "1185")
("_numeric" "1231")
+ ("_timetz" "1270")
("_bit" "1561")
("_uuid" "2951")))))
(dolist (row rows)