mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
nominatim refactoring
This commit is contained in:
22
nominatim/postgresql.h
Normal file
22
nominatim/postgresql.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
*/
|
||||
|
||||
#ifndef POSTGRESQL_H
|
||||
#define POSTGRESQL_H
|
||||
|
||||
#define PG_OID_INT8 20
|
||||
#define PG_OID_INT4 23
|
||||
|
||||
#if __BYTE_ORDER == __BIG_ENDIAN
|
||||
#define PGint16(x) (x)
|
||||
#define PGint32(x) (x)
|
||||
#define PGint64(x) (x)
|
||||
#else
|
||||
#define PGint16(x) __bswap_16 (x)
|
||||
#define PGint32(x) __bswap_32 (x)
|
||||
#define PGint64(x) __bswap_64 (x)
|
||||
#endif
|
||||
|
||||
const char *build_conninfo(const char *db, const char *username, const char *password, const char *host, const char *port);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user