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
What steps will reproduce the problem?
run ./all.bash
when Checking API compatibility
What is the expected output? What do you see instead?
Expected:
ALL TESTS PASSED
Error:
# Checking API compatibility.
2012/11/30 12:30:56 unknown type of variable "Row", type *ast.CallExpr, error =
not a known function "Errno"
code: Errno(100)
What version of the product are you using? On what operating system?
go version devel +86eed47f9b5c Thu Nov 29 18:00:51 2012 -0800
mac os x
Please provide any additional information below.
just fix it by changing
Row = Errno(100) // /* sqlite3_step() has another row ready */
Done = Errno(101) // /* sqlite3_step() has finished executing */
to
Row error = Errno(100) // /* sqlite3_step() has another row ready */
Done error = Errno(101) // /* sqlite3_step() has finished executing */
Original issue reported on code.google.com by zhaihj...@gmail.com on 30 Nov 2012 at 3:44
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
zhaihj...@gmail.com
on 30 Nov 2012 at 3:44The text was updated successfully, but these errors were encountered: