PostgreSQL 9.2 will ship with native JSON support, covering indexes, replication and performance improvements, and many more features. We are eagerly awaiting this release and will make it available in Early Access as soon as it’s released by the PostgreSQL community," said Ines Sombra, Lead Data Engineer, Engine Yard.
17 lines
423 B
C
17 lines
423 B
C
/* $NetBSD: dynloader-ltdl.h,v 1.1 2012/10/05 21:03:10 adam 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 */
|