Skip to content

Commit 37f16e7

Browse files
to #119 remove ISOLATION LEVEL in subscription_handler.go
1 parent cb2632a commit 37f16e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgserver/subscription_handler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (config *SubscriptionConfig) ToDNS() string {
5252
func (config *SubscriptionConfig) ToDuckDBQuery() []string {
5353
return []string{
5454
fmt.Sprintf("ATTACH '%s' AS pg_postgres (TYPE POSTGRES);", config.ToConnectionInfo()),
55-
"BEGIN ISOLATION LEVEL REPEATABLE READ;",
55+
"BEGIN;",
5656
"COPY FROM DATABASE pg_postgres TO mysql;",
5757
"SELECT * FROM postgres_query('pg_postgres', 'SELECT pg_current_wal_lsn()');",
5858
"COMMIT;",

0 commit comments

Comments
 (0)