Skip to content

Commit

Permalink
Added a SQL API engine package
Browse files Browse the repository at this point in the history
  • Loading branch information
kenstott committed Nov 7, 2024
1 parent 1481d77 commit ccae79b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion calcite-rs-jni/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<module>./bigquery</module>
<module>./calcite</module>
<module>./jdbc</module>
<module>sqlengine</module>
<module>./sqlengine</module>
</modules>
</project>

Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static void main(String[] args) throws IOException {

HttpServer server = HttpServer.create(new InetSocketAddress(PORT), 0);
server.createContext("/sql", new SQLHandler());
server.createContext("/v1/sql", new SQLHandler());
server.setExecutor(null);
server.start();
System.out.println("Server started on port " + PORT);
Expand Down

0 comments on commit ccae79b

Please sign in to comment.