Header And Logo

PostgreSQL
| The world's most advanced open source database.

regerrs.h

Go to the documentation of this file.
00001 /*
00002  * src/include/regex/regerrs.h
00003  */
00004 
00005 {
00006     REG_OKAY, "REG_OKAY", "no errors detected"
00007 },
00008 
00009 {
00010     REG_NOMATCH, "REG_NOMATCH", "failed to match"
00011 },
00012 
00013 {
00014     REG_BADPAT, "REG_BADPAT", "invalid regexp (reg version 0.8)"
00015 },
00016 
00017 {
00018     REG_ECOLLATE, "REG_ECOLLATE", "invalid collating element"
00019 },
00020 
00021 {
00022     REG_ECTYPE, "REG_ECTYPE", "invalid character class"
00023 },
00024 
00025 {
00026     REG_EESCAPE, "REG_EESCAPE", "invalid escape \\ sequence"
00027 },
00028 
00029 {
00030     REG_ESUBREG, "REG_ESUBREG", "invalid backreference number"
00031 },
00032 
00033 {
00034     REG_EBRACK, "REG_EBRACK", "brackets [] not balanced"
00035 },
00036 
00037 {
00038     REG_EPAREN, "REG_EPAREN", "parentheses () not balanced"
00039 },
00040 
00041 {
00042     REG_EBRACE, "REG_EBRACE", "braces {} not balanced"
00043 },
00044 
00045 {
00046     REG_BADBR, "REG_BADBR", "invalid repetition count(s)"
00047 },
00048 
00049 {
00050     REG_ERANGE, "REG_ERANGE", "invalid character range"
00051 },
00052 
00053 {
00054     REG_ESPACE, "REG_ESPACE", "out of memory"
00055 },
00056 
00057 {
00058     REG_BADRPT, "REG_BADRPT", "quantifier operand invalid"
00059 },
00060 
00061 {
00062     REG_ASSERT, "REG_ASSERT", "\"cannot happen\" -- you found a bug"
00063 },
00064 
00065 {
00066     REG_INVARG, "REG_INVARG", "invalid argument to regex function"
00067 },
00068 
00069 {
00070     REG_MIXED, "REG_MIXED", "character widths of regex and string differ"
00071 },
00072 
00073 {
00074     REG_BADOPT, "REG_BADOPT", "invalid embedded option"
00075 },
00076 
00077 {
00078     REG_ETOOBIG, "REG_ETOOBIG", "nfa has too many states"
00079 },
00080 
00081 {
00082     REG_ECOLORS, "REG_ECOLORS", "too many colors"
00083 },