Definition at line 10 of file SchemaCompileTests.cs.
void Deveel.Data.Sql.Compile.SchemaCompileTests.CreateSchema |
( |
| ) |
|
|
inline |
Definition at line 12 of file SchemaCompileTests.cs.
13 const string sql =
"CREATE SCHEMA test_schema";
17 Assert.IsNotNull(result);
18 Assert.IsFalse(result.HasErrors);
20 Assert.IsNotEmpty(result.Statements);
21 Assert.AreEqual(1, result.Statements.Count);
23 var statement = result.Statements.FirstOrDefault();
25 Assert.IsNotNull(statement);
29 Assert.AreEqual(
"test_schema", schemaStatement.SchemaName);
SqlCompileResult Compile(string sql)
void Deveel.Data.Sql.Compile.SchemaCompileTests.DropSchema |
( |
| ) |
|
|
inline |
Definition at line 33 of file SchemaCompileTests.cs.
34 const string sql =
"DROP SCHEMA test_schema";
38 Assert.IsNotNull(result);
39 Assert.IsFalse(result.HasErrors);
41 Assert.IsNotEmpty(result.Statements);
42 Assert.AreEqual(1, result.Statements.Count);
44 var statement = result.Statements.FirstOrDefault();
46 Assert.IsNotNull(statement);
51 Assert.AreEqual(
"test_schema", schemaStatement.SchemaName);
SqlCompileResult Compile(string sql)
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.Compile/SchemaCompileTests.cs