01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.expression;
07:
08: /**
09: * This class contains information about a built-in function.
10: */
11: class FunctionInfo {
12: String name;
13: int type;
14: int dataType;
15: int parameterCount;
16: boolean nullIfParameterIsNull;
17: boolean isDeterministic;
18: }
|