Definition at line 29 of file BlindSearchTests.cs.
void Deveel.Data.Index.BlindSearchTests.AddRow |
( |
TemporaryTable |
tmpTable, |
|
|
long |
id, |
|
|
string |
name, |
|
|
DateTimeOffset |
date |
|
) |
| |
|
inlineprivate |
Definition at line 55 of file BlindSearchTests.cs.
static DataObject Date(DateTimeOffset value)
static DataObject String(string s)
Represents a dynamic object that encapsulates a defined SqlType and a compatible constant ISqlObject ...
static DataObject BigInt(long value)
void Deveel.Data.Index.BlindSearchTests.SelectEqualOneColumn |
( |
| ) |
|
|
inline |
Definition at line 64 of file BlindSearchTests.cs.
66 var result =
table.SelectRowsEqual(1, name);
68 Assert.IsNotNull(result);
69 Assert.IsNotEmpty(result);
71 var index = result.First();
72 Assert.AreEqual(0, index);
static DataObject String(string s)
Represents a dynamic object that encapsulates a defined SqlType and a compatible constant ISqlObject ...
void Deveel.Data.Index.BlindSearchTests.SelectEqualTwoColumns |
( |
| ) |
|
|
inline |
Definition at line 76 of file BlindSearchTests.cs.
80 var result =
table.SelectRowsEqual(1, name, 0,
id);
81 Assert.IsNotNull(result);
82 Assert.IsNotEmpty(result);
84 var index = result.First();
85 Assert.AreEqual(0, index);
static DataObject String(string s)
Represents a dynamic object that encapsulates a defined SqlType and a compatible constant ISqlObject ...
static DataObject BigInt(long value)
void Deveel.Data.Index.BlindSearchTests.SelectGreater |
( |
| ) |
|
|
inline |
Definition at line 89 of file BlindSearchTests.cs.
92 var result =
table.SelectRowsGreater(0,
id);
94 Assert.IsNotNull(result);
95 Assert.IsNotEmpty(result);
96 Assert.AreEqual(2, result.Count());
98 Assert.AreEqual(1, result.First());
Represents a dynamic object that encapsulates a defined SqlType and a compatible constant ISqlObject ...
static DataObject BigInt(long value)
void Deveel.Data.Index.BlindSearchTests.TestSetUp |
( |
| ) |
|
|
inline |
Definition at line 35 of file BlindSearchTests.cs.
50 tmpTable.BuildIndexes(DefaultIndexTypes.BlindSearch);
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static ObjectName Parse(string s)
Parses the given string into a ObjectName object.
Describes the name of an object within a database.
static NumericType Numeric()
static DateType DateTime()
SqlTypeCode
Enumerates the codes of all SQL types handled by the system.
static StringType String()
Defines the metadata properties of a table existing within a database.
DateTimeOffset cornerTime
void AddRow(TemporaryTable tmpTable, long id, string name, DateTimeOffset date)
DateTimeOffset Deveel.Data.Index.BlindSearchTests.cornerTime |
|
private |
ITable Deveel.Data.Index.BlindSearchTests.table |
|
private |
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb-nunit/Deveel.Data.Index/BlindSearchTests.cs