Definition at line 26 of file MutableTableTests.cs.
Definition at line 55 of file MutableTableTests.cs.
56 var tableName = ObjectName.Parse(
"APP.test_table");
62 Query.CreateTable(tableInfo);
63 return Query.GetMutableTable(tableName);
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static NumericType Integer()
static StringType String()
Defines the metadata properties of a table existing within a database.
void Deveel.Data.Sql.MutableTableTests.InsertIntoTable |
( |
IMutableTable |
table | ) |
|
|
inlineprivate |
Definition at line 35 of file MutableTableTests.cs.
36 var row = table.NewRow();
37 row.SetValue(0,
"Antonello Provenzano");
43 row.SetValue(0,
"Maart Roosmaa");
49 row.SetValue(0,
"Rezaul Horaque");
RowId AddRow(Row row)
Persists a new row to the table.
override void Deveel.Data.Sql.MutableTableTests.OnSetUp |
( |
string |
testName | ) |
|
|
inlineprotectedvirtual |
void Deveel.Data.Sql.MutableTableTests.SameSessionDeleteFrom |
( |
| ) |
|
|
inline |
Definition at line 72 of file MutableTableTests.cs.
76 Assert.DoesNotThrow(() => deleteCount =
Query.DeleteFrom(ObjectName.Parse(
"APP.test_table"), queryExpression));
77 Assert.AreEqual(1, deleteCount);
static SqlReferenceExpression Reference(ObjectName objectName)
Defines the base class for instances that represent SQL expression tree nodes.
static SqlConstantExpression Constant(object value)
static SqlBinaryExpression GreaterThan(SqlExpression left, SqlExpression right)
void Deveel.Data.Sql.MutableTableTests.SameSessionInsertInto |
( |
| ) |
|
|
inline |
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/MutableTableTests.cs