Package io.crate.metadata.sys

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

Related Classes of io.crate.metadata.sys.SysExpression

Copyright © 2018 www.massapicom. 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.