forked from orafce/orafce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorafce.h
58 lines (45 loc) · 1.19 KB
/
orafce.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef __ORAFCE__
#define __ORAFCE__
#include "postgres.h"
#include "catalog/catversion.h"
#include "nodes/pg_list.h"
#include <sys/time.h>
#include "utils/datetime.h"
#include "utils/datum.h"
#define TextPCopy(t) \
DatumGetTextP(datumCopy(PointerGetDatum(t), false, -1))
#define PG_GETARG_IF_EXISTS(n, type, defval) \
((PG_NARGS() > (n) && !PG_ARGISNULL(n)) ? PG_GETARG_##type(n) : (defval))
/* alignment of this struct must fit for all types */
typedef union vardata
{
char c;
short s;
int i;
long l;
float f;
double d;
void *p;
} vardata;
extern int ora_instr(text *txt, text *pattern, int start, int nth);
extern int ora_mb_strlen(text *str, char **sizes, int **positions);
extern int ora_mb_strlen1(text *str);
extern char *nls_date_format;
extern char *orafce_timezone;
extern char *nls_date_format;
extern char *orafce_timezone;
/*
* Version compatibility
*/
extern Oid equality_oper_funcid(Oid argtype);
/*
* Date utils
*/
#if PG_VERSION_NUM >= 90400
#define STRING_PTR_FIELD_TYPE const char *const
#else
#define STRING_PTR_FIELD_TYPE char *
#endif
extern STRING_PTR_FIELD_TYPE ora_days[];
extern int ora_seq_search(const char *name, STRING_PTR_FIELD_TYPE array[], int max);
#endif