Home
last modified time | relevance | path

Searched refs:JoinType (Results 1 – 25 of 2049) sorted by relevance

12345678910>>...82

/dports/devel/spark/spark-2.1.1/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/
H A DjoinTypes.scala23 object JoinType { object
47 sealed abstract class JoinType { class
55 sealed abstract class InnerLike extends JoinType {
69 case object LeftOuter extends JoinType {
73 case object RightOuter extends JoinType {
77 case object FullOuter extends JoinType {
81 case object LeftSemi extends JoinType {
85 case object LeftAnti extends JoinType {
97 case class NaturalJoin(tpe: JoinType) extends JoinType {
103 case class UsingJoin(tpe: JoinType, usingColumns: Seq[String]) extends JoinType {
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-quicksight/source/model/
H A DJoinType.cpp29 JoinType GetJoinTypeForName(const Aws::String& name) in GetJoinTypeForName()
34 return JoinType::INNER; in GetJoinTypeForName()
38 return JoinType::OUTER; in GetJoinTypeForName()
42 return JoinType::LEFT; in GetJoinTypeForName()
46 return JoinType::RIGHT; in GetJoinTypeForName()
52 return static_cast<JoinType>(hashCode); in GetJoinTypeForName()
55 return JoinType::NOT_SET; in GetJoinTypeForName()
62 case JoinType::INNER: in GetNameForJoinType()
64 case JoinType::OUTER: in GetNameForJoinType()
66 case JoinType::LEFT: in GetNameForJoinType()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/gpu/tessellate/
H A DGrStrokeTessellateOp.cpp167 prevJoinType = JoinType::kNone; in lineTo()
212 prevJoinType != JoinType::kCusp) { in quadraticTo()
256 JoinType::kCusp : JoinType::kFromStroke; in quadraticTo()
262 prevJoinType == JoinType::kCusp) { in quadraticTo()
266 prevJoinType = JoinType::kNone; in quadraticTo()
298 prevJoinType != JoinType::kCusp) { in cubicTo()
331 JoinType::kCusp : JoinType::kFromStroke; in cubicTo()
367 JoinType::kCusp : JoinType::kFromStroke; in cubicTo()
377 prevJoinType = JoinType::kNone; in cubicTo()
479 JoinType::kFromStroke : JoinType::kCusp; in cap()
[all …]
H A DGrStrokeTessellateOp.h36 enum class JoinType { enum
52 void lineTo(SkPoint, JoinType prevJoinType = JoinType::kFromStroke);
53 void quadraticTo(const SkPoint[3], JoinType prevJoinType = JoinType::kFromStroke,
55 void cubicTo(const SkPoint[4], JoinType prevJoinType = JoinType::kFromStroke,
57 void joinTo(JoinType joinType, const SkPoint nextCubic[]) { in joinTo()
63 void joinTo(JoinType, SkPoint nextControlPoint, int maxDepth = -1);
66 void cubicToRaw(JoinType prevJoinType, const SkPoint pts[4]);
67 void joinToRaw(JoinType, SkPoint nextControlPoint);
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Dhash_join_iterator.cc861 if (m_join_type == JoinType::ANTI || m_join_type == JoinType::OUTER) { in LookupProbeRowInHashTable()
878 if ((m_join_type == JoinType::SEMI || m_join_type == JoinType::ANTI) && in LookupProbeRowInHashTable()
924 if ((m_join_type == JoinType::INNER || m_join_type == JoinType::OUTER) || in WriteProbeRowToDiskIfApplicable()
1035 case JoinType::SEMI: in ReadNextJoinedRowFromHashTable()
1040 case JoinType::ANTI: in ReadNextJoinedRowFromHashTable()
1045 case JoinType::OUTER: in ReadNextJoinedRowFromHashTable()
1046 case JoinType::INNER: in ReadNextJoinedRowFromHashTable()
1117 case JoinType::INNER: in DebugString()
1120 case JoinType::SEMI: in DebugString()
1123 case JoinType::ANTI: in DebugString()
[all …]
H A Dbka_iterator.cc57 static bool NeedMatchFlags(JoinType join_type) { in NeedMatchFlags()
58 return join_type == JoinType::OUTER || join_type == JoinType::SEMI || in NeedMatchFlags()
59 join_type == JoinType::ANTI; in NeedMatchFlags()
75 JoinType join_type) in BKAIterator()
291 if (m_join_type == JoinType::ANTI) { in Read()
303 if (m_join_type == JoinType::OUTER || m_join_type == JoinType::ANTI) { in Read()
328 case JoinType::INNER: in DebugString()
330 case JoinType::SEMI: in DebugString()
332 case JoinType::OUTER: in DebugString()
334 case JoinType::ANTI: in DebugString()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/ImageCompose/include/
H A DitkJoinImageFilter.h68 using JoinType = Vector< JoinValueType, Self::JoinDimension >; variable
81 inline JoinType operator()(const TPixel1 & A, const TPixel2 & B) const in operator()
83 JoinType out; in operator()
115 void FirstCopier(JoinType & out, unsigned int idx, const TPixel1 & A) const in FirstCopier()
122 JoinType & out, unsigned int idx, const TPixel1 & A) const in FirstCopier()
132 JoinType & out, unsigned int idx, const TPixel1 & A) const in FirstCopier()
140 void SecondCopier(JoinType & out, unsigned int idx, const TPixel2 & B) const in SecondCopier()
147 JoinType & out, unsigned int idx, const TPixel2 & B) const in SecondCopier()
157 JoinType & out, unsigned int idx, const TPixel2 & B) const in SecondCopier()
167 using ImageType = Image< typename FunctorType::JoinType,
[all …]
/dports/dns/blocky/blocky-0.17/vendor/gorm.io/gorm/clause/
H A Djoins.go3 type JoinType string type
6 CrossJoin JoinType = "CROSS"
7 InnerJoin JoinType = "INNER"
8 LeftJoin JoinType = "LEFT"
9 RightJoin JoinType = "RIGHT"
14 Type JoinType
/dports/net-im/psi/psi-1.5/src/
H A Dconferencebookmark.h34 enum JoinType enum
43 …ConferenceBookmark(const QString& name, const XMPP::Jid& jid, JoinType auto_join, const QString& n…
50 JoinType autoJoin() const;
52 void setAutoJoin(JoinType type);
66 JoinType auto_join_;
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/datafusion/src/optimizer/
H A Dhash_build_probe_order.rs27 use crate::{error::Result, prelude::JoinType};
171 fn swap_join_type(join_type: JoinType) -> JoinType { in swap_join_type() argument
173 JoinType::Inner => JoinType::Inner, in swap_join_type()
174 JoinType::Left => JoinType::Right, in swap_join_type()
175 JoinType::Right => JoinType::Left, in swap_join_type()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/compute/exec/
H A Dhash_join_node_test.cc137 case JoinType::LEFT_SEMI: in RunNonEmptyTest()
147 case JoinType::LEFT_ANTI: in RunNonEmptyTest()
156 case JoinType::INNER: in RunNonEmptyTest()
189 case JoinType::LEFT_SEMI: in RunEmptyTest()
221 case JoinType::INNER: in RunEmptyTest()
234 ::testing::Combine(::testing::Values(JoinType::LEFT_SEMI, JoinType::RIGHT_SEMI,
235 JoinType::LEFT_ANTI, JoinType::RIGHT_ANTI),
785 case JoinType::INNER: in HashJoinSimpleInt()
970 std::vector<JoinType> join_type_options{JoinType::LEFT_SEMI, JoinType::RIGHT_SEMI, in TEST()
1019 JoinType join_type; in TEST()
[all …]
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libslic3r/
H A DClipperUtils.hpp46 …th &&input, ClipperLib::EndType endType, const float delta, ClipperLib::JoinType joinType, double …
47 …hs &&input, ClipperLib::EndType endType, const float delta, ClipperLib::JoinType joinType, double …
48 …s offset(const Slic3r::Polygon &polygon, const float delta, ClipperLib::JoinType joinType = Clippe… in offset()
50 …offset(const Slic3r::Polygons &polygons, const float delta, ClipperLib::JoinType joinType = Clippe… in offset()
54 …offset(const Slic3r::Polyline &polyline, const float delta, ClipperLib::JoinType joinType = Clippe… in offset()
60 …fset(const Slic3r::ExPolygon &expolygon, const float delta, ClipperLib::JoinType joinType, double …
61 …et(const Slic3r::ExPolygons &expolygons, const float delta, ClipperLib::JoinType joinType, double …
76 const float delta2, ClipperLib::JoinType joinType = ClipperLib::jtMiter,
79 const float delta2, ClipperLib::JoinType joinType = ClipperLib::jtMiter,
82 const float delta2, ClipperLib::JoinType joinType = ClipperLib::jtMiter,
[all …]
/dports/cad/repsnapper/repsnapper-2.5a4/src/slicer/
H A Dclipping.h42 enum JoinType{jsquare,jmiter,jround}; enum
54 static CL::JoinType CLType(JoinType type);
61 CL::JoinType cljtype, double miter_limit=1,
107 JoinType jtype=jmiter, double miterdist=1);
109 JoinType jtype=jmiter,double miterdist=1);
111 JoinType jtype=jmiter, double miterdist=1);
113 JoinType jtype=jmiter, double miterdist=1);
116 JoinType jtype=jmiter,double miterdist=1);
/dports/databases/postgresql10-plperl/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql10-server/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql10-client/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql10-plpython/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql10-docs/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql10-contrib/postgresql-10.19/src/backend/optimizer/path/
H A Djoinpath.c40 JoinType jointype,
52 JoinType jointype,
58 JoinType jointype,
69 JoinType jointype,
75 JoinType jointype,
111 JoinType jointype, in add_paths_to_joinrel()
346 JoinType jointype, in try_nestloop_path()
476 JoinType jointype, in try_mergejoin_path()
638 JoinType jointype, in try_hashjoin_path()
789 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql11-client/postgresql-11.14/src/backend/optimizer/path/
H A Djoinpath.c50 JoinType jointype,
62 JoinType jointype,
68 JoinType jointype,
79 JoinType jointype,
85 JoinType jointype,
121 JoinType jointype, in add_paths_to_joinrel()
368 JoinType jointype, in try_nestloop_path()
565 JoinType jointype, in try_mergejoin_path()
727 JoinType jointype, in try_hashjoin_path()
885 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql11-plperl/postgresql-11.14/src/backend/optimizer/path/
H A Djoinpath.c50 JoinType jointype,
62 JoinType jointype,
68 JoinType jointype,
79 JoinType jointype,
85 JoinType jointype,
121 JoinType jointype, in add_paths_to_joinrel()
368 JoinType jointype, in try_nestloop_path()
565 JoinType jointype, in try_mergejoin_path()
727 JoinType jointype, in try_hashjoin_path()
885 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql11-contrib/postgresql-11.14/src/backend/optimizer/path/
H A Djoinpath.c50 JoinType jointype,
62 JoinType jointype,
68 JoinType jointype,
79 JoinType jointype,
85 JoinType jointype,
121 JoinType jointype, in add_paths_to_joinrel()
368 JoinType jointype, in try_nestloop_path()
565 JoinType jointype, in try_mergejoin_path()
727 JoinType jointype, in try_hashjoin_path()
885 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql11-docs/postgresql-11.14/src/backend/optimizer/path/
H A Djoinpath.c50 JoinType jointype,
62 JoinType jointype,
68 JoinType jointype,
79 JoinType jointype,
85 JoinType jointype,
121 JoinType jointype, in add_paths_to_joinrel()
368 JoinType jointype, in try_nestloop_path()
565 JoinType jointype, in try_mergejoin_path()
727 JoinType jointype, in try_hashjoin_path()
885 JoinType jointype, in sort_inner_and_outer()
[all …]
/dports/databases/postgresql11-plpython/postgresql-11.14/src/backend/optimizer/path/
H A Djoinpath.c50 JoinType jointype,
62 JoinType jointype,
68 JoinType jointype,
79 JoinType jointype,
85 JoinType jointype,
121 JoinType jointype, in add_paths_to_joinrel()
368 JoinType jointype, in try_nestloop_path()
565 JoinType jointype, in try_mergejoin_path()
727 JoinType jointype, in try_hashjoin_path()
885 JoinType jointype, in sort_inner_and_outer()
[all …]

12345678910>>...82