taco-db
0.1.0
|
This files provides built-in support functions for ‘VARCHAR(n)’ type. More...
Namespaces | |
taco | |
Macros | |
#define | UTILS_TYPSUPP_VARCHAR_H |
Functions | |
absl::string_view | taco::varchar_to_string_view (DatumRef datum) |
Converts a VARCHAR-typed datum into a internal string. More... | |
taco::BUILTIN_ARGTYPE (__STRING) | |
taco::BUILTIN_ARGTYPE (VARCHAR) | |
taco::BUILTIN_ARGTYPE (VARCHAR, VARCHAR) | |
taco::BUILTIN_OPR (EQ) | |
taco::BUILTIN_OPR (NE) | |
taco::BUILTIN_OPR (LT) | |
taco::BUILTIN_OPR (LE) | |
taco::BUILTIN_OPR (GT) | |
taco::BUILTIN_OPR (GE) | |
taco::BUILTIN_OPR (CAST) | |
taco::BUILTIN_ARGTYPE (VARCHAR, __STRING) | |
This files provides built-in support functions for ‘VARCHAR(n)’ type.
When we are building with fixed-length data page only, a ‘VARCHAR(n)’ datum is represented as a ‘Varchar’ struct. Otherwise, a ‘VARCHAR(n)’ datum of length ‘l’ is stored as an array of bytes of length ‘l’.
#define UTILS_TYPSUPP_VARCHAR_H |