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
mysql> SELECT files.blob_hash,files.file_path, ref_commits.commit_hash from files NATURAL JOIN commit_files NATURAL JOIN ref_commits where ref_commits.ref_name = 'HEAD' and ref_commits.index = 0;
I have the next error:
ERROR 1105 (HY000): unknown error: table "ref_commits" does not have column "commit_hash"
ref_commits table:
mysql> describe table ref_commits;
+---------------+-------+
| name | type |
+---------------+-------+
| repository_id | TEXT |
| commit_hash | TEXT |
| ref_name | TEXT |
| index | INT64 |
+---------------+-------+
4 rows in set (0,00 sec)
The text was updated successfully, but these errors were encountered:
Trying to executing the following query:
I have the next error:
ref_commits
table:The text was updated successfully, but these errors were encountered: