76b3088729
packages. postgresql95-upgrade is gone, the pg_upgrade tool is shipped with postgresql95-client now. Major enhancements in PostgreSQL 9.5 include: Allow INSERTs that would generate constraint conflicts to be turned into UPDATEs or ignored Add GROUP BY analysis features GROUPING SETS, CUBE and ROLLUP Add row-level security control Create mechanisms for tracking the progress of replication, including methods for identifying the origin of individual changes during logical replication Add Block Range Indexes (BRIN) Substantial performance improvements for sorting Substantial performance improvements for multi-CPU machines
17 lines
422 B
C
17 lines
422 B
C
/* $NetBSD: dynloader-ltdl.h,v 1.1 2016/02/25 21:37:35 tnn Exp $ */
|
|
|
|
/*
|
|
* dynamic loader based on libltdl
|
|
*/
|
|
#ifndef PORT_PROTOS_H
|
|
#define PORT_PROTOS_H
|
|
|
|
#include <ltdl.h>
|
|
#include "utils/dynamic_loader.h"
|
|
|
|
#define pg_dlopen(a) ((void *)lt_dlopen(a))
|
|
#define pg_dlsym(a,b) lt_dlsym((lt_dlhandle)(a), (b))
|
|
#define pg_dlclose(a) lt_dlclose((lt_dlhandle)(a))
|
|
#define pg_dlerror lt_dlerror
|
|
|
|
#endif /* PORT_PROTOS_H */
|