예제 #1
0
 public void DescendingIndexSegmentToString()
 {
     var segment = new IndexSegment("othercolumn", JET_coltyp.Bit, false, false);
     Assert.AreEqual("-othercolumn(Bit)", segment.ToString());
 }
예제 #2
0
 public void AscendingIndexSegmentToString()
 {
     var segment = new IndexSegment("column", JET_coltyp.IEEEDouble, true, false);
     Assert.AreEqual("+column(IEEEDouble)", segment.ToString());
 }