Merge pull request #1147 from Algunenano/find_cartodb
Enforce the usage of cartodb schema
This commit is contained in:
commit
7e81618769
@ -123,7 +123,7 @@ function unauthorizedError () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const catalogQueryTpl = ctx => `
|
const catalogQueryTpl = ctx => `
|
||||||
SELECT analysis_def->>'type' as type, * FROM cdb_analysis_catalog WHERE username = '${ctx._username}'
|
SELECT analysis_def->>'type' as type, * FROM cartodb.cdb_analysis_catalog WHERE username = '${ctx._username}'
|
||||||
`;
|
`;
|
||||||
|
|
||||||
var tablesQueryTpl = ctx => `
|
var tablesQueryTpl = ctx => `
|
||||||
|
@ -10,7 +10,7 @@ module.exports = AnalysisStatusBackend;
|
|||||||
AnalysisStatusBackend.prototype.getNodeStatus = function (nodeId, dbParams, callback) {
|
AnalysisStatusBackend.prototype.getNodeStatus = function (nodeId, dbParams, callback) {
|
||||||
var statusQuery = [
|
var statusQuery = [
|
||||||
'SELECT node_id, status, updated_at, last_error_message as error_message',
|
'SELECT node_id, status, updated_at, last_error_message as error_message',
|
||||||
'FROM cdb_analysis_catalog where node_id = \'' + nodeId + '\''
|
'FROM cartodb.cdb_analysis_catalog where node_id = \'' + nodeId + '\''
|
||||||
].join(' ');
|
].join(' ');
|
||||||
|
|
||||||
var pg = new PSQL(dbParams);
|
var pg = new PSQL(dbParams);
|
||||||
|
Loading…
Reference in New Issue
Block a user