OmniSciDB  a5dc49c757
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox Class Reference
+ Inheritance diagram for com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox:
+ Collaboration diagram for com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox:

Public Member Functions

RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Package Functions

 ST_IntersectsBox ()
 

Static Private Member Functions

static java.util.List
< SqlTypeFamily > 
signature ()
 

Detailed Description

Definition at line 1987 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.ST_IntersectsBox ( )
inlinepackage

Definition at line 1988 of file HeavyDBSqlOperatorTable.java.

1988  {
1989  super("ST_IntersectsBox",
1990  SqlKind.OTHER_FUNCTION,
1991  null,
1992  null,
1993  OperandTypes.family(signature()),
1994  SqlFunctionCategory.SYSTEM);
1995  }

Member Function Documentation

RelDataType com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.inferReturnType ( SqlOperatorBinding  opBinding)
inline

Definition at line 1998 of file HeavyDBSqlOperatorTable.java.

1998  {
1999  assert opBinding.getOperandCount() == 2;
2000  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
2001  return typeFactory.createSqlType(SqlTypeName.BOOLEAN);
2002  }
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.signature ( )
inlinestaticprivate

Definition at line 2004 of file HeavyDBSqlOperatorTable.java.

2004  {
2005  java.util.List<SqlTypeFamily> st_intersect_box_sig =
2006  new java.util.ArrayList<SqlTypeFamily>();
2007  st_intersect_box_sig.add(SqlTypeFamily.ANY);
2008  st_intersect_box_sig.add(SqlTypeFamily.ANY);
2009  return st_intersect_box_sig;
2010  }

The documentation for this class was generated from the following file: