Definition at line 25 of file VariableTests.cs.
void Deveel.Data.Sql.VariableTests.DeclareVariable |
( |
| ) |
|
|
inline |
Definition at line 34 of file VariableTests.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static StringType String()
void Deveel.Data.Sql.VariableTests.GetVariable |
( |
| ) |
|
|
inline |
Definition at line 39 of file VariableTests.cs.
40 var variable =
Query.FindVariable(
"a");
42 Assert.IsNotNull(variable);
43 Assert.IsInstanceOf<
StringType>(variable.Type);
override void Deveel.Data.Sql.VariableTests.OnSetUp |
( |
string |
testName | ) |
|
|
inlineprotectedvirtual |
Reimplemented from Deveel.Data.ContextBasedTest.
Definition at line 26 of file VariableTests.cs.
27 if (testName !=
"DeclareVariable")
30 base.OnSetUp(testName);
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static StringType String()
void Deveel.Data.Sql.VariableTests.SetExistingVariable |
( |
| ) |
|
|
inline |
Definition at line 47 of file VariableTests.cs.
50 var variable =
Query.FindVariable(
"a");
51 Assert.IsNotNull(variable);
52 Assert.IsInstanceOf<
StringType>(variable.Type);
53 Assert.IsNotNull(variable.Value);
54 Assert.IsInstanceOf<
StringType>(variable.Value.Type);
Defines the base class for instances that represent SQL expression tree nodes.
static SqlConstantExpression Constant(object value)
void Deveel.Data.Sql.VariableTests.SetNotExistingVariable |
( |
| ) |
|
|
inline |
Definition at line 58 of file VariableTests.cs.
61 var variable =
Query.FindVariable(
"b");
62 Assert.IsNotNull(variable);
64 Assert.IsNotNull(variable.Value);
65 Assert.IsInstanceOf<
NumericType>(variable.Value.Type);
Defines the base class for instances that represent SQL expression tree nodes.
static SqlConstantExpression Constant(object value)
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb-nunit/Deveel.Data.Sql/VariableTests.cs