PostgreSQL Source Code
git master
regerrs.h
Go to the documentation of this file.
1
/*
2
* src/include/regex/regerrs.h
3
*/
4
5
{
6
REG_OKAY
,
"REG_OKAY"
,
"no errors detected"
7
},
8
9
{
10
REG_NOMATCH
,
"REG_NOMATCH"
,
"failed to match"
11
},
12
13
{
14
REG_BADPAT
,
"REG_BADPAT"
,
"invalid regexp (reg version 0.8)"
15
},
16
17
{
18
REG_ECOLLATE
,
"REG_ECOLLATE"
,
"invalid collating element"
19
},
20
21
{
22
REG_ECTYPE
,
"REG_ECTYPE"
,
"invalid character class"
23
},
24
25
{
26
REG_EESCAPE
,
"REG_EESCAPE"
,
"invalid escape \\ sequence"
27
},
28
29
{
30
REG_ESUBREG
,
"REG_ESUBREG"
,
"invalid backreference number"
31
},
32
33
{
34
REG_EBRACK
,
"REG_EBRACK"
,
"brackets [] not balanced"
35
},
36
37
{
38
REG_EPAREN
,
"REG_EPAREN"
,
"parentheses () not balanced"
39
},
40
41
{
42
REG_EBRACE
,
"REG_EBRACE"
,
"braces {} not balanced"
43
},
44
45
{
46
REG_BADBR
,
"REG_BADBR"
,
"invalid repetition count(s)"
47
},
48
49
{
50
REG_ERANGE
,
"REG_ERANGE"
,
"invalid character range"
51
},
52
53
{
54
REG_ESPACE
,
"REG_ESPACE"
,
"out of memory"
55
},
56
57
{
58
REG_BADRPT
,
"REG_BADRPT"
,
"quantifier operand invalid"
59
},
60
61
{
62
REG_ASSERT
,
"REG_ASSERT"
,
"\"cannot happen\" -- you found a bug"
63
},
64
65
{
66
REG_INVARG
,
"REG_INVARG"
,
"invalid argument to regex function"
67
},
68
69
{
70
REG_MIXED
,
"REG_MIXED"
,
"character widths of regex and string differ"
71
},
72
73
{
74
REG_BADOPT
,
"REG_BADOPT"
,
"invalid embedded option"
75
},
76
77
{
78
REG_ETOOBIG
,
"REG_ETOOBIG"
,
"regular expression is too complex"
79
},
80
81
{
82
REG_ECOLORS
,
"REG_ECOLORS"
,
"too many colors"
83
},
REG_BADOPT
#define REG_BADOPT
Definition:
regex.h:232
REG_ECTYPE
#define REG_ECTYPE
Definition:
regex.h:219
REG_NOMATCH
#define REG_NOMATCH
Definition:
regex.h:216
REG_EBRACK
#define REG_EBRACK
Definition:
regex.h:222
REG_ASSERT
#define REG_ASSERT
Definition:
regex.h:229
REG_BADRPT
#define REG_BADRPT
Definition:
regex.h:228
REG_EESCAPE
#define REG_EESCAPE
Definition:
regex.h:220
REG_ECOLORS
#define REG_ECOLORS
Definition:
regex.h:234
REG_INVARG
#define REG_INVARG
Definition:
regex.h:230
REG_ETOOBIG
#define REG_ETOOBIG
Definition:
regex.h:233
REG_OKAY
#define REG_OKAY
Definition:
regex.h:215
REG_ERANGE
#define REG_ERANGE
Definition:
regex.h:226
REG_ESUBREG
#define REG_ESUBREG
Definition:
regex.h:221
REG_BADBR
#define REG_BADBR
Definition:
regex.h:225
REG_MIXED
#define REG_MIXED
Definition:
regex.h:231
REG_ECOLLATE
#define REG_ECOLLATE
Definition:
regex.h:218
REG_EBRACE
#define REG_EBRACE
Definition:
regex.h:224
REG_EPAREN
#define REG_EPAREN
Definition:
regex.h:223
REG_BADPAT
#define REG_BADPAT
Definition:
regex.h:217
REG_ESPACE
#define REG_ESPACE
Definition:
regex.h:227
src
include
regex
regerrs.h
Generated on Wed Nov 6 2024 06:13:25 for PostgreSQL Source Code by
1.9.1