blob: 3c84566ed20085fd50e1f98f87bbf303e35490bf [file] [log] [blame]
package edu.uci.ics.hivesterix.logical.expression;
/**
* some constants for expression
*
* @author yingyib
*
*/
public class ExpressionConstant {
/**
* name space for function identifier
*/
public static String NAMESPACE = "hive";
/**
* field expression: modeled as function in Algebricks
*/
public static String FIELDACCESS = "fieldaccess";
/**
* null string: modeled as null in Algebricks
*/
public static String NULL = "null";
}