Impala
Impalaistheopensource,nativeanalyticdatabaseforApacheHadoop.
|
#include "exprs/like-predicate.h"
#include <string.h>
#include <re2/re2.h>
#include <re2/stringpiece.h>
#include <sstream>
#include "gutil/strings/substitute.h"
#include "runtime/string-value.inline.h"
#include "common/names.h"
Go to the source code of this file.
Namespaces | |
impala | |
This file contains type definitions that are used throughout the code base. | |
Functions | |
static const RE2 | impala::SUBSTRING_RE ("(?:\\.\\*)*([^\\.\\^\\{\\[\\(\\|\\)\\]\\}\\+\\*\\?\\$\\\\]*)(?:\\.\\*)*") |
static const RE2 | impala::ENDS_WITH_RE ("(?:\\.\\*)*([^\\.\\^\\{\\[\\(\\|\\)\\]\\}\\+\\*\\?\\$\\\\]*)\\$") |
static const RE2 | impala::STARTS_WITH_RE ("\\^([^\\.\\^\\{\\[\\(\\|\\)\\]\\}\\+\\*\\?\\$\\\\]*)(?:\\.\\*)*") |
static const RE2 | impala::EQUALS_RE ("\\^([^\\.\\^\\{\\[\\(\\|\\)\\]\\}\\+\\*\\?\\$\\\\]*)\\$") |