@@ -28,6 +28,12 @@ from psycopg.pq import Format as PqFormat, Trace
28
28
from psycopg.pq.misc import PGnotify, connection_summary
29
29
from psycopg_c.pq cimport PQBuffer
30
30
31
+ cdef object _check_supported(fname, int pgversion):
32
+ if libpq.PG_VERSION_NUM < pgversion:
33
+ raise e.NotSupportedError(
34
+ f" {fname} requires libpq from PostgreSQL {pgversion // 10000} on the"
35
+ f" client; version {libpq.PG_VERSION_NUM // 10000} available instead"
36
+ )
31
37
32
38
cdef class PGconn:
33
39
@staticmethod
@@ -128,12 +134,7 @@ cdef class PGconn:
128
134
129
135
@property
130
136
def hostaddr(self ) -> bytes:
131
- if libpq.PG_VERSION_NUM < 120000:
132
- raise e.NotSupportedError(
133
- f"PQhostaddr requires libpq from PostgreSQL 12,"
134
- f" {libpq.PG_VERSION_NUM} available instead"
135
- )
136
-
137
+ _check_supported("PQhostaddr", 120000)
137
138
_ensure_pgconn(self )
138
139
cdef char *rv = libpq.PQhostaddr(self ._pgconn_ptr)
139
140
assert rv is not NULL
@@ -423,11 +424,7 @@ cdef class PGconn:
423
424
)
424
425
425
426
def close_prepared(self , const char *name ) -> PGresult:
426
- if libpq.PG_VERSION_NUM < 170000:
427
- raise e.NotSupportedError(
428
- f"PQclosePrepared requires libpq from PostgreSQL 17,"
429
- f" {libpq.PG_VERSION_NUM} available instead"
430
- )
427
+ _check_supported("PQclosePrepared", 170000)
431
428
_ensure_pgconn(self )
432
429
cdef libpq.PGresult *rv = libpq.PQclosePrepared(self ._pgconn_ptr, name)
433
430
if rv is NULL:
@@ -437,11 +434,7 @@ cdef class PGconn:
437
434
return PGresult._from_ptr(rv )
438
435
439
436
def send_close_prepared(self , const char *name ) -> None:
440
- if libpq.PG_VERSION_NUM < 170000:
441
- raise e.NotSupportedError(
442
- f"PQsendClosePrepared requires libpq from PostgreSQL 17,"
443
- f" {libpq.PG_VERSION_NUM} available instead"
444
- )
437
+ _check_supported("PQsendClosePrepared", 170000)
445
438
_ensure_pgconn(self )
446
439
cdef int rv = libpq.PQsendClosePrepared(self ._pgconn_ptr, name)
447
440
if not rv:
@@ -450,11 +443,7 @@ cdef class PGconn:
450
443
)
451
444
452
445
def close_portal(self , const char *name ) -> PGresult:
453
- if libpq.PG_VERSION_NUM < 170000:
454
- raise e.NotSupportedError(
455
- f"PQclosePortal requires libpq from PostgreSQL 17,"
456
- f" {libpq.PG_VERSION_NUM} available instead"
457
- )
446
+ _check_supported("PQclosePortal", 170000)
458
447
_ensure_pgconn(self )
459
448
cdef libpq.PGresult *rv = libpq.PQclosePortal(self ._pgconn_ptr, name)
460
449
if rv is NULL:
@@ -464,11 +453,7 @@ cdef class PGconn:
464
453
return PGresult._from_ptr(rv )
465
454
466
455
def send_close_portal(self , const char *name ) -> None:
467
- if libpq.PG_VERSION_NUM < 170000:
468
- raise e.NotSupportedError(
469
- f"PQsendClosePortal requires libpq from PostgreSQL 17,"
470
- f" {libpq.PG_VERSION_NUM} available instead"
471
- )
456
+ _check_supported("PQsendClosePortal", 170000)
472
457
_ensure_pgconn(self )
473
458
cdef int rv = libpq.PQsendClosePortal(self ._pgconn_ptr, name)
474
459
if not rv:
@@ -571,11 +556,7 @@ cdef class PGconn:
571
556
libpq.PQtrace(self._pgconn_ptr , stream )
572
557
573
558
def set_trace_flags(self , flags: Trace ) -> None:
574
- if libpq.PG_VERSION_NUM < 140000:
575
- raise e.NotSupportedError(
576
- f"PQsetTraceFlags requires libpq from PostgreSQL 14,"
577
- f" {libpq.PG_VERSION_NUM} available instead"
578
- )
559
+ _check_supported("PQsetTraceFlags", 140000)
579
560
libpq.PQsetTraceFlags(self._pgconn_ptr , flags )
580
561
581
562
def untrace(self ) -> None:
@@ -584,11 +565,7 @@ cdef class PGconn:
584
565
def encrypt_password(
585
566
self , const char *passwd , const char *user , algorithm = None
586
567
) -> bytes:
587
- if libpq.PG_VERSION_NUM < 100000:
588
- raise e.NotSupportedError(
589
- f"PQencryptPasswordConn requires libpq from PostgreSQL 10,"
590
- f" {libpq.PG_VERSION_NUM} available instead"
591
- )
568
+ _check_supported("PQencryptPasswordConn", 100000)
592
569
593
570
cdef char *out
594
571
cdef const char *calgo = NULL
@@ -628,11 +605,7 @@ cdef class PGconn:
628
605
:raises ~e.OperationalError: in case of failure to enter the pipeline
629
606
mode.
630
607
"""
631
- if libpq.PG_VERSION_NUM < 140000:
632
- raise e.NotSupportedError(
633
- f"PQenterPipelineMode requires libpq from PostgreSQL 14,"
634
- f" {libpq.PG_VERSION_NUM} available instead"
635
- )
608
+ _check_supported("PQenterPipelineMode", 140000)
636
609
if libpq.PQenterPipelineMode(self._pgconn_ptr ) != 1:
637
610
raise e.OperationalError("failed to enter pipeline mode")
638
611
@@ -642,11 +615,7 @@ cdef class PGconn:
642
615
:raises ~e.OperationalError: in case of failure to exit the pipeline
643
616
mode.
644
617
"""
645
- if libpq.PG_VERSION_NUM < 140000:
646
- raise e.NotSupportedError(
647
- f"PQexitPipelineMode requires libpq from PostgreSQL 14,"
648
- f" {libpq.PG_VERSION_NUM} available instead"
649
- )
618
+ _check_supported("PQexitPipelineMode", 140000)
650
619
if libpq.PQexitPipelineMode(self._pgconn_ptr ) != 1:
651
620
raise e.OperationalError(error_message(self ))
652
621
@@ -656,11 +625,7 @@ cdef class PGconn:
656
625
:raises ~e.OperationalError: if the connection is not in pipeline mode
657
626
or if sync failed.
658
627
"""
659
- if libpq.PG_VERSION_NUM < 140000:
660
- raise e.NotSupportedError(
661
- f"PQpipelineSync requires libpq from PostgreSQL 14,"
662
- f" {libpq.PG_VERSION_NUM} available instead"
663
- )
628
+ _check_supported("PQpipelineSync", 140000)
664
629
rv = libpq.PQpipelineSync(self ._pgconn_ptr)
665
630
if rv == 0:
666
631
raise e.OperationalError("connection not in pipeline mode")
@@ -672,11 +637,7 @@ cdef class PGconn:
672
637
673
638
:raises ~e.OperationalError: if the flush request failed.
674
639
"""
675
- if libpq.PG_VERSION_NUM < 140000:
676
- raise e.NotSupportedError(
677
- f"PQsendFlushRequest requires libpq from PostgreSQL 14,"
678
- f" {libpq.PG_VERSION_NUM} available instead"
679
- )
640
+ _check_supported("PQsendFlushRequest ", 140000)
680
641
cdef int rv = libpq.PQsendFlushRequest(self ._pgconn_ptr)
681
642
if rv == 0:
682
643
raise e.OperationalError(f"flush request failed: {error_message(self )}")
0 commit comments