-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] MySQL Outbox - PagedDispatchedCommand fails #3194
Comments
@iancooper @preardon Is there any chance that this could be included in the next pre-release version? |
@romtur Yes, hopefully we will be at a point to do a release in the next few days. I want to get one more PR in. |
@romtur Possibly could be schema issues between V9 and V10; we will investigate but it may be because you need to migrate |
@iancooper It looks like this query never worked for MySql we are selecting NUMBER and then using it. For MySql we are not selecting it but trying to use: Maybe we can use the same approach as for OutstandingCommand: LIMIT and OFFSET |
Ah yes! Thanks that will be what is wrong. //cc @preardon |
@iancooper @preardon Another thing to mention (not directly related to this issue), but I noticed that in the latest master code, archiveBatchSize is no longer configurable and is always set to 100 |
Describe the bug
The PagedDispatchedCommand query fails in MySQL, causing the Archiver to stop working due to unknown column 'NUMBER' error.
Noticed in 10.0.0-preview.3 but persists in the latest master version
To Reproduce
Just setting up the archiver. Managed to make the archiver work in 10.0.0-preview.3 by using a workaround to register IAmAnOutbox, as described here: #3075
Exceptions (if any)
MySqlConnector.MySqlException (0x80004005): Unknown column 'NUMBER' in 'where clause'
Further technical details
The text was updated successfully, but these errors were encountered: