Package com.mysema.query.sql.spatial

Source Code of com.mysema.query.sql.spatial.TeradataSpatialTemplatesTest

package com.mysema.query.sql.spatial;

import com.mysema.query.sql.SQLTemplates;
import org.junit.Test;

public class TeradataSpatialTemplatesTest {

    @Test
    public void test() {
        // insert into SHAPES values (1, 'Point(2 2)')
        SQLTemplates templates = new TeradataSpatialTemplates();
        //assertEquals("'POINT(2 2)'", templates.asLiteral(Wkt.fromWkt("Point(2 2)")));
    }

}
TOP

Related Classes of com.mysema.query.sql.spatial.TeradataSpatialTemplatesTest

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.