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
Copy file name to clipboardExpand all lines: README.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,10 +109,8 @@ import javax.sql.DataSource;
109
109
// dialect of your events backend - POSTGRES, MYSQL, MARIADB and so on;
110
110
// as of now, only POSTGRES has fully tested support;
111
111
// should also work with others but some things - event table partition management for example - works only with Postgres, for others it must be managed manually
112
-
importorg.jooq.SQLDialect;
113
-
114
-
var eventSQL =newEventSQL(dataSource, SQLDialect.POSTGRES);
115
-
ver shardedEventSQL =newEventSQL(dataSources, SQLDialect.POSTGRES);
112
+
var eventSQL =newEventSQL(dataSource, EventSQLDialect.POSTGRES);
113
+
ver shardedEventSQL =newEventSQL(dataSources, EventSQLDialect.POSTGRES);
116
114
```
117
115
118
116
Sharded version works in the same vain - it just assumes that topics and consumers are hosted on multiple dbs.
0 commit comments