-
Notifications
You must be signed in to change notification settings - Fork 58
clang warns about unused variable in rum_ts_utils.c #3
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
Comments
Thank you for the issue! It was fixed. Repository was updated. A lot of changes were done. For example, operator <-> was renamed to <=>, index is built faster. |
will test today ... on a 6 million page database. thanks for the hard work-john On Tue, Aug 2, 2016 at 7:50 AM, Arthur [email protected] wrote:
|
Excellent! |
do i only rebuild the rum indexes? On Tue, Aug 2, 2016 at 8:06 AM, Arthur [email protected] wrote:
|
For better testing you also need uninstall extension from your database with built indexes (because rum introduce new operators and operator classes now). After that quit psql (if you use it). Then:
|
clang warns about the unused variable 'extra_data' at line 722 in rum_ts_utils.c. adding a void cast of extra_data will safely silence the warning.
(void)extra_data
or just remove the declaration of 'extra_data'.
The text was updated successfully, but these errors were encountered: