Examples of SysExpression


Examples of io.crate.metadata.sys.SysExpression

    }

    @Test
    public void testSysObjectReferenceNull() throws Exception {
        NullFieldSysObjectReference nullRef = new NullFieldSysObjectReference();
        SysExpression n = nullRef.getChildImplementation("n");
        assertThat(n, instanceOf(BytesRefNullSysExpression.class));

        Map<String, Object> value = nullRef.value();
        assertThat(value.size(), is(1));
        assertThat(value, hasKey("n"));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.