2021-03-22 14:43:20 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "produto" not found; SQL statement: select produto.nome as Nome,categoria.nome as Categoria, produto.quantidade as Quantidade, produto.preco as Preço from produto inner join categoria where produto.categoria_id = categoria.id [42102-198] 2021-03-22 14:43:25 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "produto" not found; SQL statement: select produto.nome as Nome,categoria.nome as Categoria, produto.quantidade as Quantidade, produto.preco as Preço from produto inner join categoria where produto.categoria_id = categoria.id [42102-198] 2021-03-22 14:43:54 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "categoria" not found; SQL statement: SELECT categoria.nome FROM categoria [42102-198] 2021-03-22 14:44:37 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "categoria" not found; SQL statement: SELECT categoria.nome FROM categoria [42102-198] 2021-03-22 14:44:43 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "categoria.nome" not found; SQL statement: SELECT categoria.nome FROM categorias [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-22 14:58:19 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.categoria" not found; SQL statement: select produto.nome, categoria.nome as Categoria, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria = categoria.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-22 15:05:02 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "produtos" not found; SQL statement: select categoria.nome from categoria inner join produtos on produto.categoria_id = categoria.id where produto.categoria_id = ? [42102-198] 2021-03-22 17:45:48 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "categorias" not found; SQL statement: select * from "categorias" where id = 1 [42102-198] 2021-03-23 14:42:58 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Schema "produto" not found; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco, loja.nome from produto inner join categoria on produto.categoria_id = categoria.id inner join produto.loja_id = loja.id [90079-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:573) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.command.Parser.readTableFilter(Parser.java:1866) at org.h2.command.Parser.readJoin(Parser.java:2295) at org.h2.command.Parser.parseJoinTableFilter(Parser.java:2655) at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:2644) at org.h2.command.Parser.parseSelectSimple(Parser.java:2790) at org.h2.command.Parser.parseSelectSub(Parser.java:2638) at org.h2.command.Parser.parseSelectUnion(Parser.java:2471) at org.h2.command.Parser.parseSelect(Parser.java:2442) at org.h2.command.Parser.parsePrepared(Parser.java:815) at org.h2.command.Parser.parse(Parser.java:789) at org.h2.command.Parser.parse(Parser.java:761) at org.h2.command.Parser.prepareCommand(Parser.java:684) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-23 15:06:18 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.nome" not found; SQL statement: SELECT loja.nome FROM loja [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$Invoke1Node.createArguments(JSFunctionCallNode.java:820) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.execute_generic4(JSWriteCurrentFrameSlotNodeGen.java:154) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.execute(JSWriteCurrentFrameSlotNodeGen.java:80) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.executeVoid(JSWriteCurrentFrameSlotNodeGen.java:302) at com.oracle.truffle.js.nodes.binary.DualNode.execute(DualNode.java:124) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor140.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-23 15:06:50 jdbc[4]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.nome" not found; SQL statement: SELECT loja.nome FROM loja [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$Invoke1Node.createArguments(JSFunctionCallNode.java:820) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.execute_generic4(JSWriteCurrentFrameSlotNodeGen.java:154) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.execute(JSWriteCurrentFrameSlotNodeGen.java:80) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.executeVoid(JSWriteCurrentFrameSlotNodeGen.java:302) at com.oracle.truffle.js.nodes.binary.DualNode.execute(DualNode.java:124) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor140.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-23 15:07:25 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.nome" not found; SQL statement: SELECT loja.nome FROM loja [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$Invoke1Node.createArguments(JSFunctionCallNode.java:820) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.execute_generic4(JSWriteCurrentFrameSlotNodeGen.java:154) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.execute(JSWriteCurrentFrameSlotNodeGen.java:80) at com.oracle.truffle.js.nodes.access.JSWriteCurrentFrameSlotNodeGen.executeVoid(JSWriteCurrentFrameSlotNodeGen.java:302) at com.oracle.truffle.js.nodes.binary.DualNode.execute(DualNode.java:124) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor140.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 10:39:10 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "int[*] loja_id = 1 select * from produtos where produto.loja_id = loja_id"; expected "INSERT"; SQL statement: int loja_id = 1 select * from produtos where produto.loja_id = loja_id [42001-198] 2021-03-24 10:39:15 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "produtos" not found; SQL statement: select * from produtos where produto.loja_id = 1 [42102-198] 2021-03-24 10:40:00 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "categoria" not found; SQL statement: select nome, categoria, preco, quantidade from produto where produto.loja_id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 14:36:46 jdbc[4]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 14:37:25 jdbc[4]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor81.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 14:53:16 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Ambiguous column name "loja_id"; SQL statement: select produto.nome, produto.preco, produto.quantidade from produto inner join loja_produto on loja_produto.produto_id = produto.id inner join loja_produto on loja_produto.loja_id = loja.id where loja.uid = ? [90059-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:573) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.mapColumn(ExpressionColumn.java:142) at org.h2.expression.ExpressionColumn.mapColumns(ExpressionColumn.java:116) at org.h2.expression.condition.Comparison.mapColumns(Comparison.java:567) at org.h2.table.TableFilter$MapColumnsVisitor.accept(TableFilter.java:1247) at org.h2.table.TableFilter.visit(TableFilter.java:1201) at org.h2.table.TableFilter.addJoin(TableFilter.java:683) at org.h2.command.Parser.addJoin(Parser.java:2373) at org.h2.command.Parser.readJoin(Parser.java:2301) at org.h2.command.Parser.parseJoinTableFilter(Parser.java:2655) at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:2644) at org.h2.command.Parser.parseSelectSimple(Parser.java:2790) at org.h2.command.Parser.parseSelectSub(Parser.java:2638) at org.h2.command.Parser.parseSelectUnion(Parser.java:2471) at org.h2.command.Parser.parseSelect(Parser.java:2442) at org.h2.command.Parser.parsePrepared(Parser.java:815) at org.h2.command.Parser.parse(Parser.java:789) at org.h2.command.Parser.parse(Parser.java:761) at org.h2.command.Parser.prepareCommand(Parser.java:684) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 14:53:35 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Ambiguous column name "loja_id"; SQL statement: select produto.nome, produto.preco, produto.quantidade from produto inner join loja_produto on loja_produto.produto_id = produto.id inner join loja_produto on loja_produto.loja_id = loja.id where loja.id = 1 [90059-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:573) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.mapColumn(ExpressionColumn.java:142) at org.h2.expression.ExpressionColumn.mapColumns(ExpressionColumn.java:116) at org.h2.expression.condition.Comparison.mapColumns(Comparison.java:567) at org.h2.table.TableFilter$MapColumnsVisitor.accept(TableFilter.java:1247) at org.h2.table.TableFilter.visit(TableFilter.java:1201) at org.h2.table.TableFilter.addJoin(TableFilter.java:683) at org.h2.command.Parser.addJoin(Parser.java:2373) at org.h2.command.Parser.readJoin(Parser.java:2301) at org.h2.command.Parser.parseJoinTableFilter(Parser.java:2655) at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:2644) at org.h2.command.Parser.parseSelectSimple(Parser.java:2790) at org.h2.command.Parser.parseSelectSub(Parser.java:2638) at org.h2.command.Parser.parseSelectUnion(Parser.java:2471) at org.h2.command.Parser.parseSelect(Parser.java:2442) at org.h2.command.Parser.parsePrepared(Parser.java:815) at org.h2.command.Parser.parse(Parser.java:789) at org.h2.command.Parser.parse(Parser.java:761) at org.h2.command.Parser.prepareCommand(Parser.java:684) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 14:57:56 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "Mercearia Barreiro" not found; SQL statement: select produto.nome, produto.preco, produto.quantidade from produto where produto.loja = "Mercearia Barreiro" [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:01:59 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "Mercearia Barreiro" not found; SQL statement: select produto.nome, produto.preco, produto.quantidade from produto inner join loja on loja.mercearia = produto.loja where loja.id = "Mercearia Barreiro" [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:02:20 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "Mercearia Barreiro" not found; SQL statement: select produto.nome, produto.preco, produto.quantidade from produto inner join loja on loja.mercearia = produto.loja where loja.mercearia = "Mercearia Barreiro" [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:13:18 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor93.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:13:35 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor93.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:17:50 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome as ""Nome"", categoria.nome as ""Categoria"", produto.quantidade as ""Quantidade"", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where[*] loja.uid = 1"; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.uid = 1 [42000-198] 2021-03-24 15:17:52 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome as ""Nome"", categoria.nome as ""Categoria"", produto.quantidade as ""Quantidade"", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where[*] loja.id = 1"; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.id = 1 [42000-198] 2021-03-24 15:18:30 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome as ""Nome"", categoria.nome as ""Categoria"", produto.quantidade as ""Quantidade"", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where[*] loja.uid = 321016e8-243f-4821-b856-4c52a6f234c3"; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.uid = 321016e8-243f-4821-b856-4c52a6f234c3 [42000-198] 2021-03-24 15:18:41 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome as ""Nome"", categoria.nome as ""Categoria"", produto.quantidade as ""Quantidade"", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where[*] loja.uid = '321016e8-243f-4821-b856-4c52a6f234c3'"; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.uid = '321016e8-243f-4821-b856-4c52a6f234c3' [42000-198] 2021-03-24 15:21:09 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome as ""Nome"", categoria.nome as ""Categoria"", produto.quantidade as ""Quantidade"", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where[*] loja.id = 1"; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.id = 1 [42000-198] 2021-03-24 15:21:47 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome categoria.[*]nome produto.quantidade produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.id = 1"; SQL statement: select produto.nome categoria.nome produto.quantidade produto.preco from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id where loja.id = 1 [42000-198] 2021-03-24 15:22:41 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:22:48 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:25:46 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "produtos" not found; SQL statement: select * from produtos where produto.loja_id = 1 [42102-198] 2021-03-24 15:26:26 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.categoria" not found; SQL statement: select produto.nome, produto.categoria, produto.quantidade, produto.preco from produto where produto.loja_id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor93.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:31:49 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:31:50 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:33:27 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:33:29 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:33:37 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:35:40 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:35:41 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:35:53 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:35:55 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 15:46:26 jdbc[4]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:46:29 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:47:57 jdbc[4]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:47:59 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:50:16 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:50:32 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:51:25 jdbc[5]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:57:14 jdbc[4]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 15:58:01 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco, loja.mercearia as "Loja" from produto, categoria, loja where produto.categoria_id = categoria.id and produto.lojas= loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.executeQuery(SourceFile:411) at org.netuno.psamata.DB.query(SourceFile:381) at org.netuno.tritao.resource.DB.query(SourceFile:761) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeVoid(OptimizedBlockNode.java:120) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:70) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:02:44 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.lojas = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:03:56 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.lojas = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:04:15 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement " select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto ?[*]"; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto ? [42000-198] 2021-03-24 16:06:31 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.lojas = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:07:23 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.lojas = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:07:30 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:09:01 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:09:18 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:09:19 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:10:35 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:10:36 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcPreparedStatement.(JdbcPreparedStatement.java:77) at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:304) at org.netuno.psamata.DB.executeQuery(SourceFile:456) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor136.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:10:40 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:10:50 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, categoria.nome, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:13:25 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.loja_id from produto [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:15:25 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor155.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:17:19 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id_20210324_154615 = loja.id where loja.id = ? [22018-198] 2021-03-24 16:22:50 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id_20210324_154615 = loja.id where loja.id = ? [22018-198] 2021-03-24 16:40:01 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id_20210324_154615 = loja.id where loja.id = ? [22018-198] 2021-03-24 16:40:03 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id_20210324_154615 = loja.id where loja.id = ? [22018-198] 2021-03-24 16:40:58 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.loja_id" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria where produto.categoria_id = categoria.id and produto.loja_id = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:41:11 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome as "Nome", categoria.nome as "Categoria", produto.quantidade as "Quantidade", produto.preco from produto, categoria where produto.categoria_id = categoria.id and produto.lojas= 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 16:47:02 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome,categoria.nome, produto.preco, produto.quantidade, produto.loja_id from produto from[*] produto inner join categoria on produto.categoria_id = categoria.id"; SQL statement: select produto.nome,categoria.nome, produto.preco, produto.quantidade, produto.loja_id from produto from produto inner join categoria on produto.categoria_id = categoria.id [42000-198] 2021-03-24 17:51:15 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Parameter "#1" is not set; SQL statement: select produto.nome, produto.categoria_id, produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [90012-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:587) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.Parameter.checkSet(Parameter.java:94) at org.h2.command.Prepared.checkParameters(Prepared.java:180) at org.h2.command.CommandContainer.query(CommandContainer.java:144) at org.h2.command.Command.executeQuery(Command.java:202) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:85) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 17:54:06 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 17:54:07 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting ; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.loja_id = loja.id where loja.id = ? [22018-198] 2021-03-24 17:59:34 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Invalid value "1" for parameter "parameterIndex" [90008-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:587) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.getInvalidValueException(DbException.java:280) at org.h2.jdbc.JdbcPreparedStatement.setParameter(JdbcPreparedStatement.java:1573) at org.h2.jdbc.JdbcPreparedStatement.setInt(JdbcPreparedStatement.java:407) at org.netuno.psamata.DB.b(SourceFile:695) at org.netuno.psamata.DB.executeQuery(SourceFile:458) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor146.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 17:59:35 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Invalid value "1" for parameter "parameterIndex" [90008-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:587) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.getInvalidValueException(DbException.java:280) at org.h2.jdbc.JdbcPreparedStatement.setParameter(JdbcPreparedStatement.java:1573) at org.h2.jdbc.JdbcPreparedStatement.setInt(JdbcPreparedStatement.java:407) at org.netuno.psamata.DB.b(SourceFile:695) at org.netuno.psamata.DB.executeQuery(SourceFile:458) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor146.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-24 17:59:37 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Invalid value "1" for parameter "parameterIndex" [90008-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:587) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.getInvalidValueException(DbException.java:280) at org.h2.jdbc.JdbcPreparedStatement.setParameter(JdbcPreparedStatement.java:1573) at org.h2.jdbc.JdbcPreparedStatement.setInt(JdbcPreparedStatement.java:407) at org.netuno.psamata.DB.b(SourceFile:695) at org.netuno.psamata.DB.executeQuery(SourceFile:458) at org.netuno.psamata.DB.query(SourceFile:421) at org.netuno.tritao.resource.DB.query(SourceFile:822) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeHandle(HostMethodDesc.java:292) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostToGuestCodeCache$1.executeImpl(HostToGuestCodeCache.java:86) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.execute(GuestToHostRootNode.java:82) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callInlined(OptimizedCallTarget.java:485) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.GraalRuntimeSupport.callInlined(GraalRuntimeSupport.java:120) at org.graalvm.truffle/com.oracle.truffle.polyglot.GuestToHostRootNode.guestToHostCall(GuestToHostRootNode.java:108) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostMethodDesc$SingleMethod$MHBase.invokeGuestToHost(HostMethodDesc.java:319) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doInvoke(HostExecuteNode.java:809) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNode.doOverloadedCached(HostExecuteNode.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.executeAndSpecialize(HostExecuteNodeGen.java:241) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostExecuteNodeGen.execute(HostExecuteNodeGen.java:94) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObject.invokeMember(HostObject.java:412) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMemberNode_AndSpecialize(HostObjectGen.java:1393) at org.graalvm.truffle/com.oracle.truffle.polyglot.HostObjectGen$InteropLibraryExports$Cached.invokeMember(HostObjectGen.java:1365) at org.graalvm.truffle/com.oracle.truffle.api.interop.InteropLibraryGen$CachedDispatch.invokeMember(InteropLibraryGen.java:6078) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$ForeignInvokeNode.executeCall(JSFunctionCallNode.java:1482) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeAndSpecialize(JSFunctionCallNode.java:294) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode.executeCall(JSFunctionCallNode.java:240) at com.oracle.truffle.js.nodes.function.JSFunctionCallNode$InvokeNode.execute(JSFunctionCallNode.java:711) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeAndSpecialize(WritePropertyNode.java:263) at com.oracle.truffle.js.nodes.access.WritePropertyNode.executeVoid(WritePropertyNode.java:235) at com.oracle.truffle.js.nodes.binary.DualNode.executeVoid(DualNode.java:148) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:80) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.executeVoid(AbstractBlockNode.java:55) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedBlockNode.executeGeneric(OptimizedBlockNode.java:79) at com.oracle.truffle.js.nodes.control.AbstractBlockNode.execute(AbstractBlockNode.java:75) at com.oracle.truffle.js.nodes.function.FunctionBodyNode.execute(FunctionBodyNode.java:73) at com.oracle.truffle.js.nodes.function.FunctionRootNode.executeInRealm(FunctionRootNode.java:147) at com.oracle.truffle.js.runtime.JavaScriptRealmBoundaryRootNode.execute(JavaScriptRealmBoundaryRootNode.java:93) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callDirect(OptimizedCallTarget.java:459) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedDirectCallNode.call(OptimizedDirectCallNode.java:71) at com.oracle.truffle.js.lang.JavaScriptLanguage$1.execute(JavaScriptLanguage.java:214) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.executeRootNode(OptimizedCallTarget.java:591) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.profiledPERoot(OptimizedCallTarget.java:562) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callBoundary(OptimizedCallTarget.java:512) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.doInvoke(OptimizedCallTarget.java:496) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.callIndirect(OptimizedCallTarget.java:446) at jdk.internal.vm.compiler/org.graalvm.compiler.truffle.runtime.OptimizedCallTarget.call(OptimizedCallTarget.java:434) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.eval(PolyglotContextImpl.java:941) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:347) at org.graalvm.sdk/org.graalvm.polyglot.Context.eval(Context.java:373) at org.netuno.psamata.script.GraalRunner.eval(SourceFile:169) at org.netuno.tritao.config.Hili.runGraalScript(SourceFile:550) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:393) at org.netuno.tritao.config.Hili.runScriptSandbox(SourceFile:310) at org.netuno.tritao.Service.execute(SourceFile:630) at org.netuno.tritao.Service._main(SourceFile:571) at jdk.internal.reflect.GeneratedMethodAccessor146.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:14:18 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "lojas" not found; SQL statement: select lojas from produto [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.command.dml.Select.prepare(Select.java:1256) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:20:38 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.lojas = loja.id where loja.id = 3 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:25:40 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join loja on produto.lojas = loja.id where loja.id = 3 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:32:54 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto_loja.loja" not found; SQL statement: select produto.nome, loja.mercearia from produto inner join produto_loja on produto.loja_id = produto_loja.loja_id inner join loja on produto_loja.loja = loja.id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:205) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:37:48 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome, loja.mercearia from produto, loja, where[*] produto_loja.loja_id = produto.loja_id and loja.id = produto_loja.loja_id "; expected "identifier"; SQL statement: select produto.nome, loja.mercearia from produto, loja, where produto_loja.loja_id = produto.loja_id and loja.id = produto_loja.loja_id [42001-198] 2021-03-25 11:40:13 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Schema "loja" not found; SQL statement: select produto.nome, loja.mercearia from produto inner join produto_loja on produto_loja.loja_id = produto.lojas inner join loja.id = produto.lojas [90079-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:573) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.command.Parser.readTableFilter(Parser.java:1866) at org.h2.command.Parser.readJoin(Parser.java:2295) at org.h2.command.Parser.parseJoinTableFilter(Parser.java:2655) at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:2644) at org.h2.command.Parser.parseSelectSimple(Parser.java:2790) at org.h2.command.Parser.parseSelectSub(Parser.java:2638) at org.h2.command.Parser.parseSelectUnion(Parser.java:2471) at org.h2.command.Parser.parseSelect(Parser.java:2442) at org.h2.command.Parser.parsePrepared(Parser.java:815) at org.h2.command.Parser.parse(Parser.java:789) at org.h2.command.Parser.parse(Parser.java:761) at org.h2.command.Parser.prepareCommand(Parser.java:684) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:40:27 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, loja.mercearia from produto inner join produto_loja on produto_loja.loja_id = produto.lojas inner join loja on loja.id = produto.lojas [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:40:32 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, loja.mercearia from produto inner join produto_loja on produto_loja.loja_id = produto.lojas inner join loja on loja.id = produto.loja_id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:40:40 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "produto.lojas" not found; SQL statement: select produto.nome, loja.mercearia from produto inner join produto_loja on produto_loja.loja_id = produto.lojas inner join loja on loja.id = produto_loja.loja_id [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:134) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:49:06 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Schema "produto_loja" not found; SQL statement: select produto.nome from produto inner join produto_loja.produto_id = produto.id where produto_loja.loja_id = 3 [90079-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:573) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.command.Parser.readTableFilter(Parser.java:1866) at org.h2.command.Parser.readJoin(Parser.java:2295) at org.h2.command.Parser.parseJoinTableFilter(Parser.java:2655) at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:2644) at org.h2.command.Parser.parseSelectSimple(Parser.java:2790) at org.h2.command.Parser.parseSelectSub(Parser.java:2638) at org.h2.command.Parser.parseSelectUnion(Parser.java:2471) at org.h2.command.Parser.parseSelect(Parser.java:2442) at org.h2.command.Parser.parsePrepared(Parser.java:815) at org.h2.command.Parser.parse(Parser.java:789) at org.h2.command.Parser.parse(Parser.java:761) at org.h2.command.Parser.prepareCommand(Parser.java:684) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 11:56:13 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select produto.nome, categoria.nome as ""Categoria"", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join produto_loja on produto_loja.produto_id = produto.id where produto_loja.loja_id = loja.id where[*] loja.id = 1"; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join produto_loja on produto_loja.produto_id = produto.id where produto_loja.loja_id = loja.id where loja.id = 1 [42000-198] 2021-03-25 11:56:24 jdbc[3]: exception org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "loja.id" not found; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join produto_loja on produto_loja.produto_id = produto.id where produto_loja.loja_id = loja.id and loja.id = 1 [42122-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:451) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:205) at org.h2.message.DbException.get(DbException.java:181) at org.h2.expression.ExpressionColumn.getColumnException(ExpressionColumn.java:176) at org.h2.expression.ExpressionColumn.optimize(ExpressionColumn.java:158) at org.h2.expression.condition.Comparison.optimize(Comparison.java:207) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.expression.condition.ConditionAndOr.optimize(ConditionAndOr.java:133) at org.h2.command.dml.Select.prepare(Select.java:1259) at org.h2.command.Parser.prepareCommand(Parser.java:690) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) 2021-03-25 12:16:34 jdbc[3]: exception org.h2.jdbc.JdbcSQLNonTransientException: General error: "java.lang.NullPointerException" [50000-198] at org.h2.message.DbException.getJdbcSQLException(DbException.java:502) at org.h2.message.DbException.getJdbcSQLException(DbException.java:427) at org.h2.message.DbException.get(DbException.java:194) at org.h2.message.DbException.convert(DbException.java:347) at org.h2.message.DbException.toSQLException(DbException.java:319) at org.h2.message.TraceObject.logAndConvert(TraceObject.java:366) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:100) at org.netuno.tritao.dev.Query._main(SourceFile:37) at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.netuno.proteu.Run.run(SourceFile:103) at org.netuno.proteu.Run.(SourceFile:33) at org.netuno.proteu.DynamicURL.build(SourceFile:153) at org.netuno.proteu.Enterprise.processRequest(SourceFile:452) at org.netuno.proteu.Enterprise.service(SourceFile:525) at javax.servlet.http.HttpServlet.service(SourceFile:791) at org.eclipse.jetty.servlet.ServletHolder$NotAsyncServlet.service(SourceFile:1402) at org.eclipse.jetty.servlet.ServletHolder.handle(SourceFile:763) at org.eclipse.jetty.servlet.ServletHandler.doHandle(SourceFile:551) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:143) at org.eclipse.jetty.security.SecurityHandler.handle(SourceFile:602) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:235) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SourceFile:1610) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(SourceFile:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(SourceFile:1369) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(SourceFile:489) at org.eclipse.jetty.server.session.SessionHandler.doScope(SourceFile:1580) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(SourceFile:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(SourceFile:1284) at org.eclipse.jetty.server.handler.ScopedHandler.handle(SourceFile:141) at org.eclipse.jetty.server.handler.HandlerList.handle(SourceFile:59) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(SourceFile:127) at org.eclipse.jetty.server.Server.handle(SourceFile:501) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(SourceFile:383) at org.eclipse.jetty.server.HttpChannel.dispatch(SourceFile:556) at org.eclipse.jetty.server.HttpChannel.handle(SourceFile:375) at org.eclipse.jetty.server.HttpConnection.onFillable(SourceFile:272) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(SourceFile:311) at org.eclipse.jetty.io.FillInterest.fillable(SourceFile:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(SourceFile:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(SourceFile:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(SourceFile:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(SourceFile:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(SourceFile:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(SourceFile:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(SourceFile:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(SourceFile:938) at java.base/java.lang.Thread.run(Thread.java:834) Caused by: java.lang.NullPointerException at org.h2.expression.condition.Comparison.createIndexConditions(Comparison.java:519) at org.h2.expression.condition.ConditionAndOr.createIndexConditions(ConditionAndOr.java:67) at org.h2.table.TableFilter.mapAndAddFilter(TableFilter.java:716) at org.h2.table.TableFilter.addJoin(TableFilter.java:692) at org.h2.table.TableFilter.addJoin(TableFilter.java:695) at org.h2.table.TableFilter.addJoin(TableFilter.java:695) at org.h2.command.Parser.addJoin(Parser.java:2373) at org.h2.command.Parser.readJoin(Parser.java:2301) at org.h2.command.Parser.parseJoinTableFilter(Parser.java:2655) at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:2644) at org.h2.command.Parser.parseSelectSimple(Parser.java:2790) at org.h2.command.Parser.parseSelectSub(Parser.java:2638) at org.h2.command.Parser.parseSelectUnion(Parser.java:2471) at org.h2.command.Parser.parseSelect(Parser.java:2442) at org.h2.command.Parser.parsePrepared(Parser.java:815) at org.h2.command.Parser.parse(Parser.java:789) at org.h2.command.Parser.parse(Parser.java:761) at org.h2.command.Parser.prepareCommand(Parser.java:684) at org.h2.engine.Session.prepareLocal(Session.java:629) at org.h2.engine.Session.prepareCommand(Session.java:567) at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1247) at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:78) ... 44 more 2021-03-25 12:16:40 jdbc[3]: exception org.h2.jdbc.JdbcSQLDataException: Data conversion error converting "fe0118fe-967d-49b8-91c5-ae42c287f50b"; SQL statement: select produto.nome, categoria.nome as "Categoria", produto.quantidade, produto.preco from produto inner join categoria on produto.categoria_id = categoria.id inner join produto_loja on produto_loja.produto_id = produto.id inner join loja on produto_loja.loja_id = loja.uid and loja.uid = 'fe0118fe-967d-49b8-91c5-ae42c287f50b' [22018-198]