You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2020/11/17 15:22:27 UTC

[tomee-tck] branch master updated (9c45d75 -> 2631ab2)

This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git.


    from 9c45d75  Import deployment code from Jakarta EE 9 branch
     new 307c3ac  Websocket configuration + eclipselink logging
     new 2631ab2  Fix Bit_Tab column tab to smallint because TCK using 1/0 instead of true/false in bin/tssql.stmt

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/test/sql/derby/derby.ddl.sql            | 2 +-
 src/test/tomee-plume/conf/system.properties | 7 +++++--
 2 files changed, 6 insertions(+), 3 deletions(-)


[tomee-tck] 01/02: Websocket configuration + eclipselink logging

Posted by jl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit 307c3ac22bab85a6e229abe61445d52c84347980
Author: Jean-Louis Monteiro <je...@gmail.com>
AuthorDate: Tue Nov 17 15:46:43 2020 +0100

    Websocket configuration + eclipselink logging
---
 src/test/tomee-plume/conf/system.properties | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/test/tomee-plume/conf/system.properties b/src/test/tomee-plume/conf/system.properties
index 4af938e..3222fc8 100644
--- a/src/test/tomee-plume/conf/system.properties
+++ b/src/test/tomee-plume/conf/system.properties
@@ -17,6 +17,9 @@
 
 org.apache.catalina.STRICT_SERVLET_COMPLIANCE=true
 org.apache.tomcat.util.http.ServerCookie.FWD_SLASH_IS_SEPARATOR=false
+org.apache.tomcat.websocket.DISABLE_BUILTIN_EXTENSIONS=true
+org.apache.tomcat.websocket.ALLOW_UNSUPPORTED_EXTENSIONS=true
+org.apache.tomcat.websocket.DEFAULT_PROCESS_PERIOD=0
 user.language=en
 user.country=US
 
@@ -79,9 +82,9 @@ PERSISTENCEUNIT.CTS-EM-NOTX.openjpa.jdbc.SynchronizeMappings=buildSchema(IgnoreE
 PERSISTENCEUNIT.CTS-EM-NOTX.openjpa.Compatibility=StrictIdentityValues=true,NonDefaultMappingAllowed=true,ConvertPositionalParametersToNamed=true
 
 PERSISTENCEUNIT.CTS-EM.eclipselink.target-database=Derby
-PERSISTENCEUNIT.CTS-EM.eclipselink.logging.level=ALL
+PERSISTENCEUNIT.CTS-EM.eclipselink.logging.level=INFO
 PERSISTENCEUNIT.CTS-EM-NOTX.eclipselink.target-database=Derby
-PERSISTENCEUNIT.CTS-EM-NOTX.eclipselink.logging.level=ALL
+PERSISTENCEUNIT.CTS-EM-NOTX.eclipselink.logging.level=INFO
 
 old-dd-whitebox-notx-param.rar.moduleId=oldwhitebox-notx-param
 old-dd-whitebox-notx.rar.moduleId=oldwhitebox-notx


[tomee-tck] 02/02: Fix Bit_Tab column tab to smallint because TCK using 1/0 instead of true/false in bin/tssql.stmt

Posted by jl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit 2631ab2a210c753879987d72b2473610a8016c83
Author: Jean-Louis Monteiro <je...@gmail.com>
AuthorDate: Tue Nov 17 16:20:52 2020 +0100

    Fix Bit_Tab column tab to smallint because TCK using 1/0 instead of true/false in bin/tssql.stmt
---
 src/test/sql/derby/derby.ddl.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/sql/derby/derby.ddl.sql b/src/test/sql/derby/derby.ddl.sql
index b2bd297..60f1b95 100644
--- a/src/test/sql/derby/derby.ddl.sql
+++ b/src/test/sql/derby/derby.ddl.sql
@@ -22,7 +22,7 @@ drop table Real_Tab ;
 create table Real_Tab (MAX_VAL REAL, MIN_VAL REAL,NULL_VAL REAL) ;
 
 drop table Bit_Tab ;
-create table Bit_Tab (MAX_VAL BOOLEAN, MIN_VAL BOOLEAN, NULL_VAL SMALLINT) ;
+create table Bit_Tab (MAX_VAL SMALLINT, MIN_VAL SMALLINT, NULL_VAL SMALLINT) ;
 
 drop table Smallint_Tab ;
 create table Smallint_Tab (MAX_VAL SMALLINT, MIN_VAL SMALLINT, NULL_VAL SMALLINT) ;