117#define TEXTBUFLEN 1024
119#define DatumGetVarStringP(X) ((VarString *) PG_DETOAST_DATUM(X))
120#define DatumGetVarStringPP(X) ((VarString *) PG_DETOAST_DATUM_PACKED(X))
135 bool length_not_specified);
153 const char *fldsep,
const char *null_string);
159 int *argpos,
int *widthpos,
160 int *flags,
int *width);
164 int flags,
int width);
166 int flags,
int width);
254 if (dst_len >= src_len)
262 if (srcunpacked != src)
512 for (s = p; n > 0; n--)
598 if (length_not_specified)
605 (
errcode(ERRCODE_SUBSTRING_ERROR),
606 errmsg(
"negative substring length not allowed")));
661 if (length_not_specified)
663 slice_size = L1 = -1;
668 (
errcode(ERRCODE_SUBSTRING_ERROR),
669 errmsg(
"negative substring length not allowed")));
670 slice_size = L1 = -1;
678 slice_size = L1 = -1;
731 if (S1 > slice_strlen)
743 E1 =
Min(S1 + L1, slice_start + 1 + slice_strlen);
745 E1 = slice_start + 1 + slice_strlen;
751 for (
i = 0;
i < S1 - 1;
i++)
761 for (
i = S1;
i < E1;
i++)
766 memcpy(
VARDATA(ret), s, (p - s));
774 elog(
ERROR,
"invalid backend encoding: encoding max length < 1");
825 (
errcode(ERRCODE_SUBSTRING_ERROR),
826 errmsg(
"negative substring length not allowed")));
829 (
errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
830 errmsg(
"integer out of range")));
889 state.greedy =
false;
930 state->greedy =
true;
944 state->is_multibyte_char_in_char =
false;
946 state->is_multibyte_char_in_char =
false;
948 state->is_multibyte_char_in_char =
true;
954 state->last_match = NULL;
971 if (len1 >= len2 && len2 > 1 &&
state->locale->deterministic)
973 int searchlength = len1 - len2;
977 const char *str2 =
state->str2;
991 if (searchlength < 16)
993 else if (searchlength < 64)
995 else if (searchlength < 128)
997 else if (searchlength < 512)
999 else if (searchlength < 2048)
1001 else if (searchlength < 4096)
1002 skiptablemask = 127;
1004 skiptablemask = 255;
1005 state->skiptablemask = skiptablemask;
1012 for (
i = 0;
i <= skiptablemask;
i++)
1013 state->skiptable[
i] = len2;
1024 for (
i = 0;
i < last;
i++)
1025 state->skiptable[(
unsigned char) str2[
i] & skiptablemask] = last -
i;
1040 int needle_len =
state->len2;
1044 if (needle_len <= 0)
1048 if (
state->last_match)
1049 start_ptr =
state->last_match +
state->last_match_len;
1051 start_ptr =
state->str1;
1065 if (
state->is_multibyte_char_in_char &&
state->locale->deterministic)
1072 while (
state->refpoint < matchptr)
1084 if (
state->refpoint > matchptr)
1086 start_ptr =
state->refpoint;
1092 state->last_match = matchptr;
1093 state->last_match_len =
state->last_match_len_tmp;
1105 int haystack_len =
state->len1;
1106 int needle_len =
state->len2;
1107 int skiptablemask =
state->skiptablemask;
1108 const char *haystack =
state->str1;
1109 const char *needle =
state->str2;
1110 const char *haystack_end = &haystack[haystack_len];
1113 Assert(start_ptr >= haystack && start_ptr <= haystack_end);
1115 state->last_match_len_tmp = needle_len;
1117 if (!
state->locale->deterministic)
1134 const char *result_hptr = NULL;
1137 while (hptr < haystack_end)
1143 if (!
state->greedy &&
1144 haystack_end - hptr >= needle_len &&
1146 return (
char *) hptr;
1152 for (
const char *test_end = hptr; test_end < haystack_end; test_end +=
pg_mblen(test_end))
1154 if (
pg_strncoll(hptr, (test_end - hptr), needle, needle_len,
state->locale) == 0)
1156 state->last_match_len_tmp = (test_end - hptr);
1168 return (
char *) result_hptr;
1170 else if (needle_len == 1)
1173 char nchar = *needle;
1176 while (hptr < haystack_end)
1179 return (
char *) hptr;
1185 const char *needle_last = &needle[needle_len - 1];
1188 hptr = start_ptr + needle_len - 1;
1189 while (hptr < haystack_end)
1213 hptr +=
state->skiptable[(
unsigned char) *hptr & skiptablemask];
1228 return state->last_match;
1243 return state->refpos + 1;
1255 state->last_match = NULL;
1277 (
errcode(ERRCODE_INDETERMINATE_COLLATION),
1278 errmsg(
"could not determine which collation to use for string comparison"),
1279 errhint(
"Use the COLLATE clause to set the collation explicitly.")));
1308 result = memcmp(arg1, arg2,
Min(len1, len2));
1309 if ((result == 0) && (len1 != len2))
1310 result = (len1 < len2) ? -1 : 1;
1323 if (len1 == len2 && memcmp(arg1, arg2, len1) == 0)
1326 result =
pg_strncoll(arg1, len1, arg2, len2, mylocale);
1331 result = memcmp(arg1, arg2,
Min(len1, len2));
1332 if ((result == 0) && (len1 != len2))
1333 result = (len1 < len2) ? -1 : 1;
1550 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1551 errmsg(
"nondeterministic collations are not supported for substring searches")));
1618 bool collate_c =
false;
1639 if (
locale->collate_is_c)
1641 if (typid == BPCHAROID)
1643 else if (typid == NAMEOID)
1659 if (typid == NAMEOID)
1693 if (abbreviate || !collate_c)
1767 result = memcmp(a1p, a2p,
Min(len1, len2));
1768 if ((result == 0) && (len1 != len2))
1769 result = (len1 < len2) ? -1 : 1;
1804 result = memcmp(a1p, a2p,
Min(len1, len2));
1805 if ((result == 0) && (len1 != len2))
1806 result = (len1 < len2) ? -1 : 1;
1885 if (len1 == len2 && memcmp(a1p, a2p, len1) == 0)
1903 if (sss->
typid == BPCHAROID)
1932 if (len1 != sss->
last_len1 || memcmp(sss->
buf1, a1p, len1) != 0)
1935 memcpy(sss->
buf1, a1p, len1);
1936 sss->
buf1[len1] =
'\0';
1946 if (len2 != sss->
last_len2 || memcmp(sss->
buf2, a2p, len2) != 0)
1948 memcpy(sss->
buf2, a2p, len2);
1949 sss->
buf2[len2] =
'\0';
1962 result = strcmp(sss->
buf1, sss->
buf2);
1980 const size_t max_prefix_bytes =
sizeof(
Datum);
1983 char *authoritative_data =
VARDATA_ANY(authoritative);
1991 pres = (
char *) &res;
1993 memset(pres, 0, max_prefix_bytes);
1997 if (sss->
typid == BPCHAROID)
2028 memcpy(pres, authoritative_data,
Min(
len, max_prefix_bytes));
2047 memcmp(sss->
buf1, authoritative_data,
len) == 0)
2054 memcpy(sss->
buf1, authoritative_data,
len);
2064 if (sss->
buflen2 < max_prefix_bytes)
2072 max_prefix_bytes, sss->
locale);
2090 if (bsize < sss->buflen2)
2111 memcpy(pres, sss->
buf2,
Min(max_prefix_bytes, bsize));
2159 pfree(authoritative);
2173 double abbrev_distinct,
2179 if (memtupcount < 100)
2190 if (abbrev_distinct <= 1.0)
2191 abbrev_distinct = 1.0;
2193 if (key_distinct <= 1.0)
2203 double norm_abbrev_card = abbrev_distinct / (double) memtupcount;
2205 elog(
LOG,
"varstr_abbrev: abbrev_distinct after %d: %f "
2206 "(key_distinct: %f, norm_abbrev_card: %f, prop_card: %f)",
2207 memtupcount, abbrev_distinct, key_distinct, norm_abbrev_card,
2227 if (abbrev_distinct > key_distinct * sss->
prop_card)
2254 if (memtupcount > 10000)
2272 elog(
LOG,
"varstr_abbrev: aborted abbreviation at %d "
2273 "(abbrev_distinct: %f, key_distinct: %f, prop_card: %f)",
2274 memtupcount, abbrev_distinct, key_distinct, sss->
prop_card);
2331 size_t len1 = strlen(
NameStr(*arg1));
2338 if (
collid == C_COLLATION_OID)
2339 result = (len1 == len2 &&
2357 size_t len2 = strlen(
NameStr(*arg2));
2363 if (
collid == C_COLLATION_OID)
2364 result = (len1 == len2 &&
2381 size_t len1 = strlen(
NameStr(*arg1));
2388 if (
collid == C_COLLATION_OID)
2389 result = !(len1 == len2 &&
2407 size_t len2 = strlen(
NameStr(*arg2));
2413 if (
collid == C_COLLATION_OID)
2414 result = !(len1 == len2 &&
2458#define CmpCall(cmpfunc) \
2459 DatumGetInt32(DirectFunctionCall2Coll(cmpfunc, \
2460 PG_GET_COLLATION(), \
2461 PG_GETARG_DATUM(0), \
2462 PG_GETARG_DATUM(1)))
2536 else if (len1 < len2)
2538 else if (len1 > len2)
2699 (
errcode(ERRCODE_INVALID_NAME),
2700 errmsg(
"invalid name syntax")));
2702 if (namelist ==
NIL)
2704 (
errcode(ERRCODE_INVALID_NAME),
2705 errmsg(
"invalid name syntax")));
2707 foreach(l, namelist)
2709 char *curname = (
char *)
lfirst(l);
2747 char *nextp = rawstring;
2767 curname = nextp + 1;
2770 endp = strchr(nextp + 1,
'"');
2776 memmove(endp, endp + 1, strlen(endp));
2793 if (curname == nextp)
2805 len = endp - curname;
2808 strncpy(curname, downname,
len);
2822 else if (*nextp ==
'\0')
2836 *namelist =
lappend(*namelist, curname);
2874 char *nextp = rawstring;
2894 curname = nextp + 1;
2897 endp = strchr(nextp + 1,
'"');
2903 memmove(endp, endp + 1, strlen(endp));
2912 curname = endp = nextp;
2920 if (curname == endp)
2934 else if (*nextp ==
'\0')
2951 *namelist =
lappend(*namelist, curname);
2995 char *nextp = rawstring;
3015 curname = nextp + 1;
3018 endp = strchr(nextp + 1,
'"');
3024 memmove(endp, endp + 1, strlen(endp));
3038 if (curname == nextp)
3052 else if (*nextp ==
'\0')
3063 *namelist =
lappend(*namelist, curname);
3098 int from_sub_text_len;
3111 if (src_text_len < 1 || from_sub_text_len < 1)
3136 chunk_len = curr_ptr - start_ptr;
3141 start_ptr = curr_ptr +
state.last_match_len;
3150 chunk_len = ((
char *) src_text +
VARSIZE_ANY(src_text)) - start_ptr;
3178 p = memchr(p,
'\\', p_end - p);
3185 if (*p >=
'1' && *p <=
'9')
3204 char *start_ptr,
int data_pos)
3211 const char *chunk_start = p;
3216 p = memchr(p,
'\\', p_end - p);
3221 if (p > chunk_start)
3236 if (*p >=
'1' && *p <=
'9')
3241 so = pmatch[
idx].rm_so;
3242 eo = pmatch[
idx].rm_eo;
3248 so = pmatch[0].rm_so;
3249 eo = pmatch[0].rm_eo;
3252 else if (*p ==
'\\')
3270 if (so >= 0 && eo >= 0)
3280 chunk_start = start_ptr;
3304 int cflags,
Oid collation,
3305 int search_start,
int n)
3330 if (escape_status < 2)
3344 while (search_start <= data_len)
3366 pg_regerror(regexec_result, re, errMsg,
sizeof(errMsg));
3368 (
errcode(ERRCODE_INVALID_REGULAR_EXPRESSION),
3369 errmsg(
"regular expression failed: %s", errMsg)));
3376 if (n > 0 && nmatches != n)
3383 search_start = pmatch[0].rm_eo;
3384 if (pmatch[0].rm_so == pmatch[0].rm_eo)
3393 if (pmatch[0].rm_so - data_pos > 0)
3398 pmatch[0].rm_so - data_pos);
3405 start_ptr += chunk_len;
3406 data_pos = pmatch[0].rm_so;
3412 if (escape_status > 0)
3414 start_ptr, data_pos);
3420 pmatch[0].rm_eo - data_pos);
3421 data_pos = pmatch[0].rm_eo;
3435 search_start = data_pos;
3436 if (pmatch[0].rm_so == pmatch[0].rm_eo)
3443 if (data_pos < data_len)
3447 chunk_len = ((
char *) src_text +
VARSIZE_ANY(src_text)) - start_ptr;
3469 int inputstring_len;
3480 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3481 errmsg(
"field position must not be zero")));
3487 if (inputstring_len < 1)
3494 if (fldnum == 1 || fldnum == -1)
3510 if (fldnum == 1 || fldnum == -1)
3532 end_ptr =
VARDATA_ANY(inputstring) + inputstring_len;
3535 end_ptr - start_ptr));
3539 fldnum += numfields + 1;
3558 while (found && --fldnum > 0)
3561 start_ptr = end_ptr +
state.last_match_len;
3575 int last_len = start_ptr -
VARDATA_ANY(inputstring);
3578 inputstring_len - last_len);
3615 memset(&tstate, 0,
sizeof(tstate));
3620 if (tstate.
astate == NULL)
3655 tstate.tupdesc = rsi->
setDesc;
3693 int inputstring_len;
3728 if (inputstring_len < 1)
3735 null_string, collation);
3755 chunk_len = ((
char *) inputstring +
VARSIZE_ANY(inputstring)) - start_ptr;
3762 chunk_len = end_ptr - start_ptr;
3770 null_string, collation);
3777 start_ptr = end_ptr +
state.last_match_len;
3793 while (inputstring_len > 0)
3795 int chunk_len =
pg_mblen(start_ptr);
3804 null_string, collation);
3808 start_ptr += chunk_len;
3809 inputstring_len -= chunk_len;
3828 bool is_null =
false;
3830 if (null_string &&
text_isequal(field_value, null_string, collation))
3905 const char *fldsep,
const char *null_string)
3916 bool printed =
false;
3940 if (my_extra == NULL)
3961 typlen = my_extra->
typlen;
3975 if (bitmap && (*bitmap & bitmask) == 0)
3978 if (null_string != NULL)
3989 itemvalue =
fetch_att(p, typbyval, typlen);
4007 if (bitmask == 0x100)
4028 const char *
digits =
"0123456789abcdef";
4032 char *
const end =
buf +
sizeof(
buf);
4117 if (fcinfo->flinfo->fn_extra == NULL)
4124 elog(
ERROR,
"cache lookup failed for type %u", argtypeid);
4128 *((
int *) fcinfo->flinfo->fn_extra) = typlen;
4131 typlen = *((
int *) fcinfo->flinfo->fn_extra);
4138 else if (typlen == -2)
4164 if (fcinfo->flinfo->fn_extra == NULL)
4171 elog(
ERROR,
"cache lookup failed for type %u", argtypeid);
4175 *((
int *) fcinfo->flinfo->fn_extra) = typlen;
4178 typlen = *((
int *) fcinfo->flinfo->fn_extra);
4199 elog(
ERROR,
"invalid compression method id %d", cmid);
4217 if (fcinfo->flinfo->fn_extra == NULL)
4224 elog(
ERROR,
"cache lookup failed for type %u", argtypeid);
4228 *((
int *) fcinfo->flinfo->fn_extra) = typlen;
4231 typlen = *((
int *) fcinfo->flinfo->fn_extra);
4267 elog(
ERROR,
"string_agg_transfn called in non-aggregate context");
4292 bool isfirst =
false;
4344 elog(
ERROR,
"aggregate function called in non-aggregate context");
4371 else if (state2->
len > 0)
4497 elog(
ERROR,
"could not determine data type of concat() input");
4524 bool first_arg =
true;
4567 if (foutcache == NULL)
4684 const char *endp = p +
len;
4719#define TEXT_FORMAT_FLAG_MINUS 0x0001
4721#define ADVANCE_PARSE_POINTER(ptr,end_ptr) \
4723 if (++(ptr) >= (end_ptr)) \
4725 (errcode(ERRCODE_INVALID_PARAMETER_VALUE), \
4726 errmsg("unterminated format() type specifier"), \
4727 errhint("For a single \"%%\" use \"%%%%\"."))); \
4739 const char *start_ptr;
4740 const char *end_ptr;
4745 Datum *elements = NULL;
4789 &elmlen, &elmbyval, &elmalign);
4793 &elements, &nulls, &
nitems);
4797 funcvariadic =
true;
4803 funcvariadic =
false;
4814 for (cp = start_ptr; cp < end_ptr; cp++)
4856 if (strchr(
"sIL", *cp) == NULL)
4858 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4859 errmsg(
"unrecognized format() type specifier \"%.*s\"",
4861 errhint(
"For a single \"%%\" use \"%%%%\".")));
4871 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4872 errmsg(
"too few arguments for format()")));
4884 isNull = nulls[
arg - 1];
4885 typid = element_type;
4888 elog(
ERROR,
"could not determine data type of format() input");
4895 else if (typid == INT4OID)
4897 else if (typid == INT2OID)
4904 if (typid != prev_width_type)
4910 fmgr_info(typoutputfunc, &typoutputinfo_width);
4911 prev_width_type = typid;
4928 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4929 errmsg(
"too few arguments for format()")));
4941 isNull = nulls[
arg - 1];
4942 typid = element_type;
4945 elog(
ERROR,
"could not determine data type of format() input");
4954 if (typid != prev_type)
4960 fmgr_info(typoutputfunc, &typoutputfinfo);
4979 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4980 errmsg(
"unrecognized format() type specifier \"%.*s\"",
4982 errhint(
"For a single \"%%\" use \"%%%%\".")));
4988 if (elements != NULL)
5014 const char *cp = *ptr;
5017 while (*cp >=
'0' && *cp <=
'9')
5019 int8 digit = (*cp -
'0');
5024 (
errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
5025 errmsg(
"number is out of range")));
5061 int *argpos,
int *widthpos,
5062 int *flags,
int *width)
5064 const char *cp = start_ptr;
5087 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5088 errmsg(
"format specifies argument 0, but arguments are numbered from 1")));
5108 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5109 errmsg(
"width argument position must be ended by \"$\"")));
5115 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5116 errmsg(
"format specifies argument 0, but arguments are numbered from 1")));
5140 int flags,
int width)
5147 if (conversion ==
's')
5149 else if (conversion ==
'L')
5151 else if (conversion ==
'I')
5153 (
errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
5154 errmsg(
"null values cannot be formatted as an SQL identifier")));
5162 if (conversion ==
'I')
5167 else if (conversion ==
'L')
5187 int flags,
int width)
5189 bool align_to_left =
false;
5202 align_to_left =
true;
5204 if (width <= INT_MIN)
5206 (
errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
5207 errmsg(
"number is out of range")));
5211 align_to_left =
true;
5261#define LEVENSHTEIN_LESS_EQUAL
5291 state->max_d = max_d;
5292 state->match = NULL;
5310 if (
state->source == NULL ||
state->source[0] ==
'\0' ||
5311 candidate == NULL || candidate[0] ==
'\0')
5323 candidate, strlen(candidate), 1, 1, 1,
5324 state->max_d,
true);
5325 if (dist <= state->max_d &&
5326 dist <= strlen(
state->source) / 2 &&
5327 (
state->min_d == -1 || dist < state->min_d))
5329 state->min_d = dist;
5330 state->match = candidate;
5343 return state->match;
5361 (
errcode(ERRCODE_SYNTAX_ERROR),
5362 errmsg(
"Unicode normalization can only be performed if server encoding is UTF8")));
5374 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5375 errmsg(
"invalid normalization form: %s", formstr)));
5420 (
errmsg(
"Unicode categorization can only be performed if server encoding is UTF8")));
5425 for (
int i = 0;
i < size;
i++)
5458 for (
i = 0;
i < size;
i++)
5471 for (
pg_wchar *wp = output_chars; *wp; wp++)
5473 unsigned char buf[4];
5483 for (
pg_wchar *wp = output_chars; *wp; wp++)
5526 for (
i = 0;
i < size;
i++)
5545 for (
pg_wchar *wp = output_chars; *wp; wp++)
5548 result = (size == output_size) &&
5549 (memcmp(input_chars, output_chars, size *
sizeof(
pg_wchar)) == 0);
5560 for (
size_t i = 0;
i < n;
i++)
5561 if (!isxdigit((
unsigned char) instr[
i]))
5570 if (
c >=
'0' &&
c <=
'9')
5572 if (
c >=
'a' &&
c <=
'f')
5573 return c -
'a' + 0xA;
5574 if (
c >=
'A' &&
c <=
'F')
5575 return c -
'A' + 0xA;
5576 elog(
ERROR,
"invalid hexadecimal digit");
5586 unsigned int result = 0;
5588 for (
size_t i = 0;
i < n;
i++)
5589 result +=
hexval(instr[
i]) << (4 * (n -
i - 1));
5615 if (instr[0] ==
'\\')
5630 int offset = instr[1] ==
'u' ? 2 : 1;
5632 unicode =
hexval_n(instr + offset, 4);
5636 errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5637 errmsg(
"invalid Unicode code point: %04X", unicode));
5653 pair_first = unicode;
5660 instr += 4 + offset;
5663 else if (
len >= 8 && instr[1] ==
'+' &&
isxdigits_n(instr + 2, 6))
5671 errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5672 errmsg(
"invalid Unicode code point: %04X", unicode));
5688 pair_first = unicode;
5698 else if (
len >= 10 && instr[1] ==
'U' &&
isxdigits_n(instr + 2, 8))
5706 errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5707 errmsg(
"invalid Unicode code point: %04X", unicode));
5723 pair_first = unicode;
5735 (
errcode(ERRCODE_SYNTAX_ERROR),
5736 errmsg(
"invalid Unicode escape"),
5737 errhint(
"Unicode escapes must be \\XXXX, \\+XXXXXX, \\uXXXX, or \\UXXXXXXXX.")));
5760 (
errcode(ERRCODE_SYNTAX_ERROR),
5761 errmsg(
"invalid Unicode surrogate pair")));
Datum idx(PG_FUNCTION_ARGS)
#define PG_GETARG_ARRAYTYPE_P(n)
#define ARR_NULLBITMAP(a)
#define PG_RETURN_ARRAYTYPE_P(x)
ArrayBuildState * accumArrayResult(ArrayBuildState *astate, Datum dvalue, bool disnull, Oid element_type, MemoryContext rcontext)
ArrayType * construct_empty_array(Oid elmtype)
void deconstruct_array(ArrayType *array, Oid elmtype, int elmlen, bool elmbyval, char elmalign, Datum **elemsp, bool **nullsp, int *nelemsp)
Datum makeArrayResult(ArrayBuildState *astate, MemoryContext rcontext)
int ArrayGetNItems(int ndim, const int *dims)
static Datum values[MAXATTR]
#define TextDatumGetCString(d)
#define unconstify(underlying_type, expr)
#define OidIsValid(objectId)
Size toast_datum_size(Datum value)
Size toast_raw_datum_size(Datum value)
#define VARATT_EXTERNAL_GET_POINTER(toast_pointer, attr)
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
void fmgr_info(Oid functionId, FmgrInfo *finfo)
Datum DirectFunctionCall2Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2)
struct varlena * pg_detoast_datum_packed(struct varlena *datum)
void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo, MemoryContext mcxt)
char * OutputFunctionCall(FmgrInfo *flinfo, Datum val)
bool get_fn_expr_variadic(FmgrInfo *flinfo)
Oid get_fn_expr_argtype(FmgrInfo *flinfo, int argnum)
#define PG_FREE_IF_COPY(ptr, n)
#define PG_GETARG_BYTEA_PP(n)
#define PG_GETARG_TEXT_PP(n)
#define PG_RETURN_BYTEA_P(x)
#define DatumGetTextPP(X)
#define DatumGetBpCharPP(X)
#define PG_GETARG_POINTER(n)
#define PG_RETURN_CSTRING(x)
#define PG_GETARG_DATUM(n)
#define PG_GETARG_CSTRING(n)
#define PG_GETARG_INT64(n)
#define PG_GETARG_NAME(n)
#define PG_RETURN_TEXT_P(x)
#define DatumGetTextPSlice(X, m, n)
#define PG_RETURN_INT32(x)
#define PG_RETURN_NAME(x)
#define PG_GETARG_INT32(n)
#define PG_RETURN_DATUM(x)
#define PG_RETURN_POINTER(x)
#define PG_GET_COLLATION()
#define PG_RETURN_BOOL(x)
void InitMaterializedSRF(FunctionCallInfo fcinfo, bits32 flags)
#define MAT_SRF_USE_EXPECTED_DESC
static Datum hash_uint32(uint32 k)
static Datum hash_any(const unsigned char *k, int keylen)
Assert(PointerIsAligned(start, uint64))
void initHyperLogLog(hyperLogLogState *cState, uint8 bwidth)
double estimateHyperLogLog(hyperLogLogState *cState)
void addHyperLogLog(hyperLogLogState *cState, uint32 hash)
static bool pg_mul_s32_overflow(int32 a, int32 b, int32 *result)
static bool pg_add_s32_overflow(int32 a, int32 b, int32 *result)
if(TABLE==NULL||TABLE_index==NULL)
#define MAX_LEVENSHTEIN_STRLEN
List * lappend(List *list, void *datum)
void list_free(List *list)
void getTypeOutputInfo(Oid type, Oid *typOutput, bool *typIsVarlena)
void get_typlenbyvalalign(Oid typid, int16 *typlen, bool *typbyval, char *typalign)
void get_type_io_data(Oid typid, IOFuncSelector which_func, int16 *typlen, bool *typbyval, char *typalign, char *typdelim, Oid *typioparam, Oid *func)
int16 get_typlen(Oid typid)
Oid get_base_element_type(Oid typid)
static pg_wchar utf8_to_unicode(const unsigned char *c)
int GetDatabaseEncoding(void)
int pg_mbstrlen_with_len(const char *mbstr, int limit)
int pg_mbcharcliplen(const char *mbstr, int len, int limit)
int pg_mbstrlen(const char *mbstr)
int pg_mbcliplen(const char *mbstr, int len, int limit)
void pg_unicode_to_server(pg_wchar c, unsigned char *s)
int pg_database_encoding_max_length(void)
int pg_mb2wchar_with_len(const char *from, pg_wchar *to, int len)
int pg_mblen(const char *mbstr)
void * MemoryContextAlloc(MemoryContext context, Size size)
char * pstrdup(const char *in)
void * repalloc(void *pointer, Size size)
void pfree(void *pointer)
void * palloc0(Size size)
MemoryContext CurrentMemoryContext
#define CHECK_FOR_INTERRUPTS()
int AggCheckCallContext(FunctionCallInfo fcinfo, MemoryContext *aggcontext)
int32 pg_strtoint32(const char *s)
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
#define DatumBigEndianToNative(x)
#define PG_CACHE_LINE_SIZE
bool pg_strxfrm_enabled(pg_locale_t locale)
pg_locale_t pg_newlocale_from_collation(Oid collid)
int pg_strcoll(const char *arg1, const char *arg2, pg_locale_t locale)
bool pg_strxfrm_prefix_enabled(pg_locale_t locale)
int pg_strncoll(const char *arg1, ssize_t len1, const char *arg2, ssize_t len2, pg_locale_t locale)
size_t pg_strxfrm(char *dest, const char *src, size_t destsize, pg_locale_t locale)
size_t pg_strxfrm_prefix(char *dest, const char *src, size_t destsize, pg_locale_t locale)
static rewind_source * source
static unsigned char * unicode_to_utf8(pg_wchar c, unsigned char *utf8string)
#define MAX_UNICODE_EQUIVALENT_STRING
static bool is_valid_unicode_codepoint(pg_wchar c)
static pg_wchar surrogate_pair_to_codepoint(pg_wchar first, pg_wchar second)
static bool is_utf16_surrogate_first(pg_wchar c)
static bool is_utf16_surrogate_second(pg_wchar c)
int pg_strcasecmp(const char *s1, const char *s2)
void canonicalize_path(char *path)
static uint32 DatumGetUInt32(Datum X)
static uint64 DatumGetUInt64(Datum X)
static bool DatumGetBool(Datum X)
static Datum PointerGetDatum(const void *X)
static Name DatumGetName(Datum X)
static char * DatumGetCString(Datum X)
static Pointer DatumGetPointer(Datum X)
static int16 DatumGetInt16(Datum X)
static int32 DatumGetInt32(Datum X)
char * quote_literal_cstr(const char *rawstr)
static unsigned hash(unsigned *uv, int n)
size_t pg_regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size)
int pg_regexec(regex_t *re, const chr *string, size_t len, size_t search_start, rm_detail_t *details, size_t nmatch, regmatch_t pmatch[], int flags)
regex_t * RE_compile_and_cache(text *text_re, int cflags, Oid collation)
const char * quote_identifier(const char *ident)
void truncate_identifier(char *ident, int len, bool warn)
char * downcase_truncate_identifier(const char *ident, int len, bool warn)
bool scanner_isspace(char ch)
struct SortSupportData * SortSupport
struct StringInfoData * StringInfo
StringInfo makeStringInfo(void)
void appendStringInfo(StringInfo str, const char *fmt,...)
void appendBinaryStringInfo(StringInfo str, const void *data, int datalen)
void appendStringInfoSpaces(StringInfo str, int count)
void appendStringInfoString(StringInfo str, const char *s)
void appendStringInfoChar(StringInfo str, char ch)
void initStringInfo(StringInfo str)
#define appendStringInfoCharMacro(str, ch)
static void initReadOnlyStringInfo(StringInfo str, char *data, int len)
Tuplestorestate * setResult
int(* comparator)(Datum x, Datum y, SortSupport ssup)
Datum(* abbrev_converter)(Datum original, SortSupport ssup)
int(* abbrev_full_comparator)(Datum x, Datum y, SortSupport ssup)
bool(* abbrev_abort)(int memtupcount, SortSupport ssup)
Tuplestorestate * tupstore
bool is_multibyte_char_in_char
hyperLogLogState full_card
hyperLogLogState abbr_card
ToastCompressionId toast_get_compression_id(struct varlena *attr)
@ TOAST_INVALID_COMPRESSION_ID
@ TOAST_LZ4_COMPRESSION_ID
@ TOAST_PGLZ_COMPRESSION_ID
int ssup_datum_unsigned_cmp(Datum x, Datum y, SortSupport ssup)
void tuplestore_putvalues(Tuplestorestate *state, TupleDesc tdesc, const Datum *values, const bool *isnull)
#define att_align_nominal(cur_offset, attalign)
#define att_addlength_pointer(cur_offset, attlen, attptr)
static Datum fetch_att(const void *T, bool attbyval, int attlen)
pg_unicode_category unicode_category(pg_wchar code)
UnicodeNormalizationQC unicode_is_normalized_quickcheck(UnicodeNormalizationForm form, const pg_wchar *input)
pg_wchar * unicode_normalize(UnicodeNormalizationForm form, const pg_wchar *input)
#define PG_UNICODE_VERSION
String * makeString(char *str)
static bool VARATT_IS_EXTERNAL_ONDISK(const void *PTR)
static Size VARSIZE_ANY(const void *PTR)
static Size VARSIZE_ANY_EXHDR(const void *PTR)
static bool VARATT_IS_EXTERNAL(const void *PTR)
static char * VARDATA(const void *PTR)
static char * VARDATA_ANY(const void *PTR)
static bool VARATT_IS_COMPRESSED(const void *PTR)
static void SET_VARSIZE(void *PTR, Size len)
int bpchartruelen(char *s, int len)
static int varstrfastcmp_locale(char *a1p, int len1, char *a2p, int len2, SortSupport ssup)
Datum unknownrecv(PG_FUNCTION_ARGS)
Datum array_to_text(PG_FUNCTION_ARGS)
static int text_cmp(text *arg1, text *arg2, Oid collid)
Datum textsend(PG_FUNCTION_ARGS)
Datum textoverlay_no_len(PG_FUNCTION_ARGS)
static void text_format_string_conversion(StringInfo buf, char conversion, FmgrInfo *typOutputInfo, Datum value, bool isNull, int flags, int width)
static text * text_overlay(text *t1, text *t2, int sp, int sl)
Datum text_format(PG_FUNCTION_ARGS)
Datum textlen(PG_FUNCTION_ARGS)
Datum pg_column_toast_chunk_id(PG_FUNCTION_ARGS)
static void text_position_setup(text *t1, text *t2, Oid collid, TextPositionState *state)
static int32 text_length(Datum str)
static bool varstr_abbrev_abort(int memtupcount, SortSupport ssup)
Datum text_left(PG_FUNCTION_ARGS)
Datum string_agg_transfn(PG_FUNCTION_ARGS)
static bool text_isequal(text *txt1, text *txt2, Oid collid)
static void text_position_cleanup(TextPositionState *state)
static text * text_catenate(text *t1, text *t2)
static text * concat_internal(const char *sepstr, int argidx, FunctionCallInfo fcinfo)
static void appendStringInfoText(StringInfo str, const text *t)
Datum textgtname(PG_FUNCTION_ARGS)
Datum textout(PG_FUNCTION_ARGS)
Datum textcat(PG_FUNCTION_ARGS)
Datum text_substr(PG_FUNCTION_ARGS)
Datum text_smaller(PG_FUNCTION_ARGS)
static text * text_substring(Datum str, int32 start, int32 length, bool length_not_specified)
static int check_replace_text_has_escape(const text *replace_text)
Datum text_concat_ws(PG_FUNCTION_ARGS)
static int internal_text_pattern_compare(text *arg1, text *arg2)
Datum string_agg_serialize(PG_FUNCTION_ARGS)
Datum text_ge(PG_FUNCTION_ARGS)
static int varlenafastcmp_locale(Datum x, Datum y, SortSupport ssup)
Datum array_to_text_null(PG_FUNCTION_ARGS)
static const char * text_format_parse_format(const char *start_ptr, const char *end_ptr, int *argpos, int *widthpos, int *flags, int *width)
Datum text_larger(PG_FUNCTION_ARGS)
Datum unicode_assigned(PG_FUNCTION_ARGS)
int varstr_cmp(const char *arg1, int len1, const char *arg2, int len2, Oid collid)
static char * text_position_get_match_ptr(TextPositionState *state)
static int bpcharfastcmp_c(Datum x, Datum y, SortSupport ssup)
Datum text_to_array_null(PG_FUNCTION_ARGS)
static unsigned int hexval_n(const char *instr, size_t n)
static bool rest_of_char_same(const char *s1, const char *s2, int len)
text * cstring_to_text_with_len(const char *s, int len)
Datum text_to_table_null(PG_FUNCTION_ARGS)
Datum text_right(PG_FUNCTION_ARGS)
Datum textne(PG_FUNCTION_ARGS)
Datum textrecv(PG_FUNCTION_ARGS)
static void text_format_append_string(StringInfo buf, const char *str, int flags, int width)
static int text_position(text *t1, text *t2, Oid collid)
bool SplitDirectoriesString(char *rawstring, char separator, List **namelist)
Datum unicode_normalize_func(PG_FUNCTION_ARGS)
Datum bttext_pattern_sortsupport(PG_FUNCTION_ARGS)
static void split_text_accum_result(SplitTextOutputData *tstate, text *field_value, text *null_string, Oid collation)
Datum split_part(PG_FUNCTION_ARGS)
Datum texteqname(PG_FUNCTION_ARGS)
Datum text_substr_no_len(PG_FUNCTION_ARGS)
Datum text_name(PG_FUNCTION_ARGS)
Datum text_le(PG_FUNCTION_ARGS)
const char * getClosestMatch(ClosestMatchState *state)
static void text_position_reset(TextPositionState *state)
Datum text_to_table(PG_FUNCTION_ARGS)
#define ADVANCE_PARSE_POINTER(ptr, end_ptr)
Datum textnename(PG_FUNCTION_ARGS)
static char * text_position_next_internal(char *start_ptr, TextPositionState *state)
static FmgrInfo * build_concat_foutcache(FunctionCallInfo fcinfo, int argidx)
Datum to_hex64(PG_FUNCTION_ARGS)
Datum text_to_array(PG_FUNCTION_ARGS)
Datum unicode_is_normalized(PG_FUNCTION_ARGS)
#define TEXT_FORMAT_FLAG_MINUS
static void check_collation_set(Oid collid)
bool SplitGUCList(char *rawstring, char separator, List **namelist)
static text * convert_to_base(uint64 value, int base)
Datum textoverlay(PG_FUNCTION_ARGS)
static void appendStringInfoRegexpSubstr(StringInfo str, text *replace_text, regmatch_t *pmatch, char *start_ptr, int data_pos)
bool SplitIdentifierString(char *rawstring, char separator, List **namelist)
static text * array_to_text_internal(FunctionCallInfo fcinfo, ArrayType *v, const char *fldsep, const char *null_string)
Datum to_hex32(PG_FUNCTION_ARGS)
Datum text_starts_with(PG_FUNCTION_ARGS)
Datum text_gt(PG_FUNCTION_ARGS)
Datum text_reverse(PG_FUNCTION_ARGS)
Datum to_bin64(PG_FUNCTION_ARGS)
Datum texteq(PG_FUNCTION_ARGS)
Datum to_oct64(PG_FUNCTION_ARGS)
Datum text_pattern_gt(PG_FUNCTION_ARGS)
static int charlen_to_bytelen(const char *p, int n)
void varstr_sortsupport(SortSupport ssup, Oid typid, Oid collid)
static int namefastcmp_c(Datum x, Datum y, SortSupport ssup)
static StringInfo makeStringAggState(FunctionCallInfo fcinfo)
Datum textlename(PG_FUNCTION_ARGS)
Datum icu_unicode_version(PG_FUNCTION_ARGS)
static int namefastcmp_locale(Datum x, Datum y, SortSupport ssup)
static Datum varstr_abbrev_convert(Datum original, SortSupport ssup)
text * cstring_to_text(const char *s)
Datum text_concat(PG_FUNCTION_ARGS)
Datum text_pattern_lt(PG_FUNCTION_ARGS)
Datum text_pattern_ge(PG_FUNCTION_ARGS)
Datum btvarstrequalimage(PG_FUNCTION_ARGS)
Datum nameletext(PG_FUNCTION_ARGS)
text * replace_text_regexp(text *src_text, text *pattern_text, text *replace_text, int cflags, Oid collation, int search_start, int n)
Datum namenetext(PG_FUNCTION_ARGS)
static int text_position_get_match_pos(TextPositionState *state)
void text_to_cstring_buffer(const text *src, char *dst, size_t dst_len)
Datum to_bin32(PG_FUNCTION_ARGS)
Datum to_oct32(PG_FUNCTION_ARGS)
Datum namegttext(PG_FUNCTION_ARGS)
Datum unicode_version(PG_FUNCTION_ARGS)
Datum namegetext(PG_FUNCTION_ARGS)
static UnicodeNormalizationForm unicode_norm_form_from_string(const char *formstr)
static bool text_position_next(TextPositionState *state)
Datum textoctetlen(PG_FUNCTION_ARGS)
Datum textltname(PG_FUNCTION_ARGS)
Datum bttextsortsupport(PG_FUNCTION_ARGS)
Datum text_format_nv(PG_FUNCTION_ARGS)
Datum textpos(PG_FUNCTION_ARGS)
static int varstrfastcmp_c(Datum x, Datum y, SortSupport ssup)
Datum bttext_pattern_cmp(PG_FUNCTION_ARGS)
Datum string_agg_finalfn(PG_FUNCTION_ARGS)
Datum unistr(PG_FUNCTION_ARGS)
static unsigned int hexval(unsigned char c)
static bool text_format_parse_digits(const char **ptr, const char *end_ptr, int *value)
Datum unknownin(PG_FUNCTION_ARGS)
static bool isxdigits_n(const char *instr, size_t n)
Datum string_agg_deserialize(PG_FUNCTION_ARGS)
Datum namelttext(PG_FUNCTION_ARGS)
Datum pg_column_size(PG_FUNCTION_ARGS)
#define DatumGetVarStringPP(X)
Datum pg_column_compression(PG_FUNCTION_ARGS)
Datum name_text(PG_FUNCTION_ARGS)
Datum nameeqtext(PG_FUNCTION_ARGS)
Datum bttextnamecmp(PG_FUNCTION_ARGS)
void initClosestMatch(ClosestMatchState *state, const char *source, int max_d)
Datum textin(PG_FUNCTION_ARGS)
Datum string_agg_combine(PG_FUNCTION_ARGS)
Datum btnametextcmp(PG_FUNCTION_ARGS)
Datum unknownsend(PG_FUNCTION_ARGS)
Datum text_pattern_le(PG_FUNCTION_ARGS)
void updateClosestMatch(ClosestMatchState *state, const char *candidate)
char * text_to_cstring(const text *t)
Datum bttextcmp(PG_FUNCTION_ARGS)
Datum unknownout(PG_FUNCTION_ARGS)
Datum replace_text(PG_FUNCTION_ARGS)
Datum textgename(PG_FUNCTION_ARGS)
List * textToQualifiedNameList(text *textval)
static bool split_text(FunctionCallInfo fcinfo, SplitTextOutputData *tstate)
Datum text_lt(PG_FUNCTION_ARGS)
int varstr_levenshtein_less_equal(const char *source, int slen, const char *target, int tlen, int ins_c, int del_c, int sub_c, int max_d, bool trusted)