use of io.questdb.cairo.TableWriter in project questdb by bluestreak01.
the class HaversineDistDegreeGroupByFunctionFactoryTest method testOneNullAtTop.
@Test
public void testOneNullAtTop() throws SqlException {
compiler.compile("create table tab (lat double, lon double, k timestamp)", sqlExecutionContext);
try (TableWriter w = engine.getWriter(sqlExecutionContext.getCairoSecurityContext(), "tab", "testing")) {
TableWriter.Row r = w.newRow();
r.append();
double latDegree = 1;
double lonDegree = 2;
long ts = 0;
for (int i = 0; i < 2; i++) {
r = w.newRow();
r.putDouble(0, latDegree);
r.putDouble(1, lonDegree);
r.putTimestamp(2, ts);
r.append();
latDegree += 1;
lonDegree += 1;
ts += 10_000_000_000L;
}
w.commit();
}
try (RecordCursorFactory factory = compiler.compile("select haversine_dist_deg(lat, lon, k) from tab", sqlExecutionContext).getRecordCursorFactory()) {
try (RecordCursor cursor = factory.getCursor(sqlExecutionContext)) {
Record record = cursor.getRecord();
Assert.assertEquals(1, cursor.size());
Assert.assertTrue(cursor.hasNext());
Assert.assertEquals(157.22760372823444, record.getDouble(0), DELTA);
}
}
}
use of io.questdb.cairo.TableWriter in project questdb by bluestreak01.
the class HaversineDistDegreeGroupByFunctionFactoryTest method testOneNullsInMiddle.
@Test
public void testOneNullsInMiddle() throws SqlException {
compiler.compile("create table tab (lat double, lon double, k timestamp)", sqlExecutionContext);
try (TableWriter w = engine.getWriter(sqlExecutionContext.getCairoSecurityContext(), "tab", "testing")) {
TableWriter.Row r = w.newRow();
r.putDouble(0, 1);
r.putDouble(1, 2);
r.putTimestamp(2, 10_000_000_000L);
r.append();
r = w.newRow();
r.append();
r = w.newRow();
r.append();
r = w.newRow();
r.append();
r = w.newRow();
r.putDouble(0, 2);
r.putDouble(1, 3);
r.putTimestamp(2, 20_000_000_000L);
r.append();
w.commit();
}
try (RecordCursorFactory factory = compiler.compile("select haversine_dist_deg(lat, lon, k) from tab", sqlExecutionContext).getRecordCursorFactory()) {
try (RecordCursor cursor = factory.getCursor(sqlExecutionContext)) {
Record record = cursor.getRecord();
Assert.assertEquals(1, cursor.size());
Assert.assertTrue(cursor.hasNext());
Assert.assertEquals(157.22760372823444, record.getDouble(0), DELTA);
}
}
}
use of io.questdb.cairo.TableWriter in project questdb by bluestreak01.
the class HaversineDistDegreeGroupByFunctionFactoryTest method testAllNull.
@Test
public void testAllNull() throws SqlException {
compiler.compile("create table tab (lat double, lon double, k timestamp)", sqlExecutionContext);
try (TableWriter w = engine.getWriter(sqlExecutionContext.getCairoSecurityContext(), "tab", "testing")) {
for (int i = 0; i < 2; i++) {
TableWriter.Row r = w.newRow();
r.append();
}
w.commit();
}
try (RecordCursorFactory factory = compiler.compile("select haversine_dist_deg(lat, lon, k) from tab", sqlExecutionContext).getRecordCursorFactory()) {
try (RecordCursor cursor = factory.getCursor(sqlExecutionContext)) {
Record record = cursor.getRecord();
Assert.assertEquals(1, cursor.size());
Assert.assertTrue(cursor.hasNext());
Assert.assertEquals(0, record.getDouble(0), DELTA);
}
}
}
use of io.questdb.cairo.TableWriter in project questdb by bluestreak01.
the class HaversineDistDegreeGroupByFunctionFactoryTest method testAggregationBySymbol.
// "select s, haversine_dist_deg(lat, lon, k) from tab",
@Test
public void testAggregationBySymbol() throws SqlException {
compiler.compile("create table tab (s symbol, lat double, lon double, k timestamp) timestamp(k) partition by NONE", sqlExecutionContext);
try (TableWriter w = engine.getWriter(sqlExecutionContext.getCairoSecurityContext(), "tab", "testing")) {
double latDegree = -5;
double lonDegree = -6;
long ts = 0;
for (int i = 0; i < 10; i++) {
TableWriter.Row r = w.newRow();
r.putSym(0, "AAA");
r.putDouble(1, latDegree);
r.putDouble(2, lonDegree);
r.putTimestamp(3, ts);
r.append();
latDegree += 1;
lonDegree += 1;
ts += 360000000L;
}
w.commit();
latDegree = -20;
lonDegree = 10;
for (int i = 0; i < 10; i++) {
TableWriter.Row r = w.newRow();
r.putSym(0, "BBB");
r.putDouble(1, latDegree);
r.putDouble(2, lonDegree);
r.putTimestamp(3, ts);
r.append();
latDegree += 0.1;
lonDegree += 0.1;
ts += 360000000L;
}
w.commit();
}
try (RecordCursorFactory factory = compiler.compile("select s, haversine_dist_deg(lat, lon, k) from tab", sqlExecutionContext).getRecordCursorFactory()) {
try (RecordCursor cursor = factory.getCursor(sqlExecutionContext)) {
Record record = cursor.getRecord();
Assert.assertEquals(2, cursor.size());
Assert.assertTrue(cursor.hasNext());
Assert.assertEquals("AAA", record.getSym(0));
Assert.assertEquals(1414.545985354098, record.getDouble(1), DELTA);
Assert.assertTrue(cursor.hasNext());
Assert.assertEquals("BBB", record.getSym(0));
Assert.assertEquals(137.51028123371657, record.getDouble(1), DELTA);
}
}
}
use of io.questdb.cairo.TableWriter in project questdb by bluestreak01.
the class LastLongGroupByFunctionFactoryTest method testNonNull.
@Test
public void testNonNull() throws SqlException {
compiler.compile("create table tab (f long)", sqlExecutionContext);
final Rnd rnd = new Rnd();
try (TableWriter w = engine.getWriter(sqlExecutionContext.getCairoSecurityContext(), "tab", "testing")) {
for (int i = 100; i > 10; i--) {
TableWriter.Row r = w.newRow();
r.putLong(0, rnd.nextLong());
r.append();
}
w.commit();
}
try (RecordCursorFactory factory = compiler.compile("select last(f) from tab", sqlExecutionContext).getRecordCursorFactory()) {
try (RecordCursor cursor = factory.getCursor(sqlExecutionContext)) {
Record record = cursor.getRecord();
Assert.assertEquals(1, cursor.size());
Assert.assertTrue(cursor.hasNext());
Assert.assertEquals(-6919361415374675248L, record.getLong(0));
}
}
}
Aggregations