all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] sql: add missing postgresql types
@ 2023-04-16 13:38 Nicolas Martyanoff
  2023-04-16 13:41 ` Nicolas Martyanoff
  2023-04-17  9:12 ` Robert Pluim
  0 siblings, 2 replies; 5+ messages in thread
From: Nicolas Martyanoff @ 2023-04-16 13:38 UTC (permalink / raw)
  To: emacs-devel; +Cc: Nicolas Martyanoff

* lisp/progmodes/sql.el: Add multiple missing PostgreSQL types: bigserial,
smallserial, macaddr8, jsonb, jsonpath, built-in range types, object
identifier types (oid & co).
---
 lisp/progmodes/sql.el | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index d8bd6bc2685..75d0cbbb367 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -2192,14 +2192,17 @@ sql-mode-postgres-font-lock-keywords
 
      ;; Postgres Data Types
      (sql-font-lock-keywords-builder 'font-lock-type-face nil
-"bigint" "bigserial" "bit" "bool" "boolean" "box" "bytea" "char"
-"character" "cidr" "circle" "date" "decimal" "double" "float4"
-"float8" "inet" "int" "int2" "int4" "int8" "integer" "interval" "line"
-"lseg" "macaddr" "money" "name" "numeric" "path" "point" "polygon"
-"precision" "real" "serial" "serial4" "serial8" "sequences" "smallint" "text"
-"time" "timestamp" "timestamptz" "timetz" "tsquery" "tsvector"
-"txid_snapshot" "unknown" "uuid" "varbit" "varchar" "varying" "without"
-"xml" "zone"
+ "bigint" "bigserial" "bigserial" "bit" "bool" "boolean" "box" "bytea" "char"
+"character" "cidr" "circle" "date" "daterange" "decimal" "double" "float4"
+"float8" "inet" "int" "int2" "int4" "int4range" "int8" "int8range" "integer"
+"interval" "jsonb" "jsonpath" "line" "lseg" "macaddr" "macaddr8" "money"
+"name" "numeric" "numrange" "oid" "path" "point" "polygon" "precision" "real"
+"regclass" "regcollation" "regconfig" "regdictionary" "regnamespace "
+"regoper" "regoperator" "regproc" "regprocedure" "regrole" "regtype"
+"sequences" "serial" "serial4" "serial8" "smallint" "smallserial" "text"
+"time" "timestamp" "timestamptz" "timetz" "tsquery" "tsrange" "tstzrange"
+"tsvector" "txid_snapshot" "unknown" "uuid" "varbit" "varchar" "varying"
+"without" "xml" "zone"
 )))
 
   "Postgres SQL keywords used by font-lock.
-- 
2.39.2




^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-04-20  7:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-16 13:38 [PATCH] sql: add missing postgresql types Nicolas Martyanoff
2023-04-16 13:41 ` Nicolas Martyanoff
2023-04-17  9:12 ` Robert Pluim
2023-04-17 10:18   ` Nicolas Martyanoff
2023-04-20  7:52     ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.