diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-13 14:00:11 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-13 14:00:11 +0100 |
commit | 87254de0bc7e0bb4eff94f0e0a548110d336d771 (patch) | |
tree | bfc558b35b2c1e65f2ecd0e031cf0c9e9eb368d9 /lib/output | |
parent | Run non-readonly PQ tests in tmp db (diff) | |
download | mygrate-87254de0bc7e0bb4eff94f0e0a548110d336d771.tar.bz2 mygrate-87254de0bc7e0bb4eff94f0e0a548110d336d771.tar.xz mygrate-87254de0bc7e0bb4eff94f0e0a548110d336d771.zip |
Fix column order in select source
Diffstat (limited to 'lib/output')
-rw-r--r-- | lib/output/pq/sql/selectSource.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/output/pq/sql/selectSource.sql b/lib/output/pq/sql/selectSource.sql index 32b413d..6d82090 100644 --- a/lib/output/pq/sql/selectSource.sql +++ b/lib/output/pq/sql/selectSource.sql @@ -1,3 +1,3 @@ -SELECT host, username, password, port, filename, position, serverid +SELECT host, username, password, port, serverid, filename, position FROM mygrate.source s WHERE s.source_id = $1 |