You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For English only, other languages we will close it directly.
Please answer these questions before submitting your issue. Thanks!
Which version of Sharding-Sphere do you using?
3.0.0.M2
Which project do you using? Sharding-JDBC or Sharding-Proxy?
JDBC
Expected behavior
Successfully created transaction log table
Actual behavior
org.postgresql.util.PSQLException:
CREATE TABLE IF NOT EXISTS transaction_log (id VARCHAR(40) NOT NULL, transaction_type VARCHAR(30) NOT NULL, data_source VARCHAR(255) NOT NULL, sql TEXT NOT NULL, parameters TEXT NOT NULL, creation_time LONG NOT NULL, async_delivery_try_times INT NOT NULL DEFAULT 0, PRIMARY KEY (id));
Reason analyze
transactionManager.init().createtable();
PostgreSQL does not recognize quotes
Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc
For bug report, please MUST provide the reproduce example codes (such as a github link).
The text was updated successfully, but these errors were encountered:
For English only, other languages we will close it directly.
Please answer these questions before submitting your issue. Thanks!
Which version of Sharding-Sphere do you using?
3.0.0.M2
Which project do you using? Sharding-JDBC or Sharding-Proxy?
JDBC
Expected behavior
Successfully created transaction log table
Actual behavior
org.postgresql.util.PSQLException:
CREATE TABLE IF NOT EXISTS
transaction_log
(id
VARCHAR(40) NOT NULL,transaction_type
VARCHAR(30) NOT NULL,data_source
VARCHAR(255) NOT NULL,sql
TEXT NOT NULL,parameters
TEXT NOT NULL,creation_time
LONG NOT NULL,async_delivery_try_times
INT NOT NULL DEFAULT 0, PRIMARY KEY (id
));Reason analyze
transactionManager.init().createtable();
PostgreSQL does not recognize quotes
Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc
For bug report, please MUST provide the reproduce example codes (such as a github link).
The text was updated successfully, but these errors were encountered: