Skip to content

Commit

Permalink
keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Apr 14, 2017
1 parent 0cf822d commit 5b527de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cats/mysql_queries.inc
Expand Up @@ -555,7 +555,7 @@ SELECT Path.Path AS Path,
Temp.LStat AS LStat,
Temp.FileId AS FileId,
Temp.MD5 AS MD5
FROM (%s) AS TEMP
FROM (%s) AS Temp
JOIN Path ON (Path.PathId = Temp.PathId)
WHERE Temp.FileIndex > 0
),
Expand Down
2 changes: 1 addition & 1 deletion src/cats/postgresql_queries.inc
Expand Up @@ -535,7 +535,7 @@ SELECT Path.Path AS Path,
Temp.LStat AS LStat,
Temp.FileId AS FileId,
Temp.MD5 AS MD5
FROM (%s) AS TEMP
FROM (%s) AS Temp
JOIN Path ON (Path.PathId = Temp.PathId)
WHERE Temp.FileIndex > 0
),
Expand Down
2 changes: 1 addition & 1 deletion src/cats/sqlite_queries.inc
Expand Up @@ -555,7 +555,7 @@ SELECT Path.Path AS Path,
Temp.LStat AS LStat,
Temp.FileId AS FileId,
Temp.MD5 AS MD5
FROM (%s) AS TEMP
FROM (%s) AS Temp
JOIN Path ON (Path.PathId = Temp.PathId)
WHERE Temp.FileIndex > 0
),
Expand Down

0 comments on commit 5b527de

Please sign in to comment.