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
quote watermark column with non-zero NumPartitionsOverride (#3618)
Fix an issue of using PostgreSQL watermark column that contain uppercase
letters for example
```
"watermarkColumn": "rowInsertedAt",
```
and setting snapshotNumPartitionsOverride > 0, **GetQRepPartitions**
fails with
```
{
"message": "failed to get partitions from source: ERROR: column \"rowinsertedat\" does not exist (SQLSTATE 42703)",
"source": "GoSDK",
"cause": {
"message": "ERROR: column \"rowinsertedat\" does not exist (SQLSTATE 42703)",
"source": "GoSDK",
"applicationFailureInfo": {
"type": "PgError"
}
},
"applicationFailureInfo": {
"type": "wrapError"
}
}
```
0 commit comments