mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
This provides a mechanism for specifying conversions between SQL data types and procedural languages. As examples, there are transforms for hstore and ltree for PL/Perl and PL/Python. reviews by Pavel Stěhule and Andres Freund
22 lines
590 B
C
22 lines
590 B
C
/*--------------------------
|
|
* common utility functions
|
|
*--------------------------
|
|
*/
|
|
|
|
#ifndef PLPY_UTIL_H
|
|
#define PLPY_UTIL_H
|
|
|
|
extern void *PLy_malloc(size_t bytes);
|
|
extern void *PLy_malloc0(size_t bytes);
|
|
extern char *PLy_strdup(const char *str);
|
|
extern void PLy_free(void *ptr);
|
|
|
|
extern PyObject *PLyUnicode_Bytes(PyObject *unicode);
|
|
extern char *PLyUnicode_AsString(PyObject *unicode);
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
extern PyObject *PLyUnicode_FromString(const char *s);
|
|
extern PyObject *PLyUnicode_FromStringAndSize(const char *s, Py_ssize_t size);
|
|
#endif
|
|
|
|
#endif /* PLPY_UTIL_H */
|