Created
February 8, 2021 10:48
-
-
Save vietj/e446d9fced42e9d0319863c5e1262642 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ quarkus-integration-test-hibernate-reactive-postgresql --- | |
[INFO] | |
[INFO] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] Running io.quarkus.it.hibernate.reactive.postgresql.HibernateReactiveTest | |
2021-02-08 11:47:26,033 WARN [io.qua.dep.QuarkusAugmentor] (main) Using Java versions older than 11 to build Quarkus applications is deprecated and will be disallowed in a future release! | |
2021-02-08 11:47:29,020 INFO [org.hib.rea.pro.imp.ReactiveIntegrator] (main) HRX000001: Hibernate Reactive Preview | |
Hibernate: | |
drop table if exists Cow cascade | |
2021-02-08 11:47:29,313 WARN [io.ver.sql.imp.SocketConnectionBase] (vert.x-eventloop-thread-0) Backend notice: severity='NOTICE', code='00000', message='table "cow" does not exist, skipping', detail='null', hint='null', position='null', internalPosition='null', internalQuery='null', where='null', file='tablecmds.c', line='1217', routine='DropErrorMsgNonExistent', schema='null', table='null', column='null', dataType='null', constraint='null' | |
Hibernate: | |
drop table if exists Pig cascade | |
2021-02-08 11:47:29,318 WARN [io.ver.sql.imp.SocketConnectionBase] (vert.x-eventloop-thread-0) Backend notice: severity='NOTICE', code='00000', message='table "pig" does not exist, skipping', detail='null', hint='null', position='null', internalPosition='null', internalQuery='null', where='null', file='tablecmds.c', line='1217', routine='DropErrorMsgNonExistent', schema='null', table='null', column='null', dataType='null', constraint='null' | |
Hibernate: | |
drop sequence if exists hibernate_sequence | |
2021-02-08 11:47:29,322 WARN [io.ver.sql.imp.SocketConnectionBase] (vert.x-eventloop-thread-0) Backend notice: severity='NOTICE', code='00000', message='sequence "hibernate_sequence" does not exist, skipping', detail='null', hint='null', position='null', internalPosition='null', internalQuery='null', where='null', file='tablecmds.c', line='1217', routine='DropErrorMsgNonExistent', schema='null', table='null', column='null', dataType='null', constraint='null' | |
Hibernate: | |
drop table if exists Cow cascade | |
2021-02-08 11:47:29,332 WARN [io.ver.sql.imp.SocketConnectionBase] (vert.x-eventloop-thread-0) Backend notice: severity='NOTICE', code='00000', message='table "cow" does not exist, skipping', detail='null', hint='null', position='null', internalPosition='null', internalQuery='null', where='null', file='tablecmds.c', line='1217', routine='DropErrorMsgNonExistent', schema='null', table='null', column='null', dataType='null', constraint='null' | |
Hibernate: | |
drop table if exists Pig cascade | |
2021-02-08 11:47:29,336 WARN [io.ver.sql.imp.SocketConnectionBase] (vert.x-eventloop-thread-0) Backend notice: severity='NOTICE', code='00000', message='table "pig" does not exist, skipping', detail='null', hint='null', position='null', internalPosition='null', internalQuery='null', where='null', file='tablecmds.c', line='1217', routine='DropErrorMsgNonExistent', schema='null', table='null', column='null', dataType='null', constraint='null' | |
Hibernate: | |
drop sequence if exists hibernate_sequence | |
2021-02-08 11:47:29,340 WARN [io.ver.sql.imp.SocketConnectionBase] (vert.x-eventloop-thread-0) Backend notice: severity='NOTICE', code='00000', message='sequence "hibernate_sequence" does not exist, skipping', detail='null', hint='null', position='null', internalPosition='null', internalQuery='null', where='null', file='tablecmds.c', line='1217', routine='DropErrorMsgNonExistent', schema='null', table='null', column='null', dataType='null', constraint='null' | |
Hibernate: | |
create sequence hibernate_sequence start 1 increment 1 | |
Hibernate: | |
create table Cow ( | |
id int8 not null, | |
name varchar(255), | |
primary key (id) | |
) | |
Hibernate: | |
create table Pig ( | |
id int4 not null, | |
name varchar(255), | |
primary key (id) | |
) | |
2021-02-08 11:47:29,416 INFO [io.quarkus] (main) Quarkus 999-SNAPSHOT on JVM started in 3.570s. Listening on: http://localhost:8081 | |
2021-02-08 11:47:29,417 INFO [io.quarkus] (main) Profile test activated. | |
2021-02-08 11:47:29,417 INFO [io.quarkus] (main) Installed features: [cdi, hibernate-orm, hibernate-reactive, mutiny, reactive-pg-client, resteasy-reactive, resteasy-reactive-jsonb, smallrye-context-propagation, vertx] | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
insert | |
into | |
Pig | |
(name, id) | |
values | |
($1, $2) | |
Hibernate: | |
select | |
nextval ('hibernate_sequence') | |
Hibernate: | |
insert | |
into | |
Cow | |
(name, id) | |
values | |
($1, $2) | |
Hibernate: | |
select | |
friesianco0_.id as id1_0_, | |
friesianco0_.name as name2_0_ | |
from | |
Cow friesianco0_ | |
where | |
friesianco0_.name=$1 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
delete | |
from | |
Pig | |
where | |
id=$1 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
update | |
Pig | |
set | |
name=$1 | |
where | |
id=$2 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
update | |
Pig | |
set | |
name=$1 | |
where | |
id=$2 | |
Hibernate: | |
delete | |
from | |
Pig | |
where | |
id=$1 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.713 s - in io.quarkus.it.hibernate.reactive.postgresql.HibernateReactiveTest | |
[INFO] Running io.quarkus.it.hibernate.reactive.postgresql.HibernateReactiveAlternativeTest | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
insert | |
into | |
Pig | |
(name, id) | |
values | |
($1, $2) | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
delete | |
from | |
Pig | |
where | |
id=$1 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
update | |
Pig | |
set | |
name=$1 | |
where | |
id=$2 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
Hibernate: | |
update | |
Pig | |
set | |
name=$1 | |
where | |
id=$2 | |
Hibernate: | |
delete | |
from | |
Pig | |
where | |
id=$1 | |
Hibernate: | |
select | |
guineapig0_.id as id1_1_0_, | |
guineapig0_.name as name2_1_0_ | |
from | |
Pig guineapig0_ | |
where | |
guineapig0_.id=$1 | |
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.354 s - in io.quarkus.it.hibernate.reactive.postgresql.HibernateReactiveAlternativeTest | |
2021-02-08 11:47:32,229 INFO [io.quarkus] (main) Quarkus stopped in 0.081s | |
[INFO] | |
[INFO] Results: | |
[INFO] | |
[INFO] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0 | |
[INFO] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] BUILD SUCCESS | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 13.721 s | |
[INFO] Finished at: 2021-02-08T11:47:32+01:00 | |
[INFO] ------------------------------------------------------------------------ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment