summaryrefslogtreecommitdiff
path: root/libpod/sql_state.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2017-11-09 15:03:57 -0500
committerMatthew Heon <matthew.heon@gmail.com>2017-11-18 12:58:48 -0500
commit657cb1b7f6be1610d6888acf18bb77027108ea9e (patch)
treea5bce6add325ee02cfbf574c3decb3d663b45d5f /libpod/sql_state.go
parent57300be94d3de0a9710458a3070c064b0d5231d3 (diff)
downloadpodman-657cb1b7f6be1610d6888acf18bb77027108ea9e.tar.gz
podman-657cb1b7f6be1610d6888acf18bb77027108ea9e.tar.bz2
podman-657cb1b7f6be1610d6888acf18bb77027108ea9e.zip
Fix lingering SQL error
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod/sql_state.go')
-rw-r--r--libpod/sql_state.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/libpod/sql_state.go b/libpod/sql_state.go
index 4754bf71e..424eb81fb 100644
--- a/libpod/sql_state.go
+++ b/libpod/sql_state.go
@@ -104,10 +104,10 @@ func (s *SQLState) Container(id string) (*Container, error) {
containerState.StartedTime,
containerState.FinishedTime,
containerState.ExitCode
- FROM containers
- INNER JOIN
- containerState ON containers.Id = containerState.Id
- WHERE containers.Id=?;`
+ FROM containers
+ INNER JOIN
+ containerState ON containers.Id = containerState.Id
+ WHERE containers.Id=?;`
if !s.valid {
return nil, ErrDBClosed
@@ -133,10 +133,10 @@ func (s *SQLState) LookupContainer(idOrName string) (*Container, error) {
containerState.StartedTime,
containerState.FinishedTime,
containerState.ExitCode
- FROM containers
- INNER JOIN
- containerState ON containers.Id = containerState.Id
- WHERE (containers.Id LIKE ?) OR containers.Name=?;`
+ FROM containers
+ INNER JOIN
+ containerState ON containers.Id = containerState.Id
+ WHERE (containers.Id LIKE ?) OR containers.Name=?;`
if !s.valid {
return nil, ErrDBClosed