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
{{ message }}
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
We support the inclusion of comments in the SQL files used to generate our tracefile tests, denoted by #. Executing the GenerateTrace.java utility to produce a tracefile from the SQL file logs an error to the console when it encounters a comment (by virtue of the fact that it attempts to execute it as SQL). This doesn't prevent the correct operation of the program, it is merely misleading and needlessly noisy.
We should just check for the leading # ourselves and avoid executing these lines altogether.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We support the inclusion of comments in the SQL files used to generate our tracefile tests, denoted by
#
. Executing theGenerateTrace.java
utility to produce a tracefile from the SQL file logs an error to the console when it encounters a comment (by virtue of the fact that it attempts to execute it as SQL). This doesn't prevent the correct operation of the program, it is merely misleading and needlessly noisy.We should just check for the leading
#
ourselves and avoid executing these lines altogether.The text was updated successfully, but these errors were encountered: