Skip to content

Commit

Permalink
Change userId, dbId to username and dbname (#1274)
Browse files Browse the repository at this point in the history
  • Loading branch information
vera-liu committed Oct 6, 2016
1 parent f837733 commit 5c5b393
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Expand Up @@ -126,7 +126,7 @@ class QuerySearch extends React.Component {
</div>
<QueryTable
columns={[
'state', 'dbId', 'userId',
'state', 'db', 'user',
'progress', 'rows', 'sql', 'querylink',
]}
onUserClicked={this.onUserClicked.bind(this)}
Expand Down
11 changes: 6 additions & 5 deletions caravel/assets/javascripts/SqlLab/components/QueryTable.jsx
Expand Up @@ -28,7 +28,8 @@ class QueryTable extends React.Component {
}
getQueryLink(dbId, sql) {
const params = ['dbid=' + dbId, 'sql=' + sql, 'title=Untitled Query'];
return getLink(this.state.cleanUri, params);
const link = getLink(this.state.cleanUri, params);
return encodeURI(link);
}
hideVisualizeModal() {
this.setState({ showVisualizeModal: false });
Expand All @@ -50,20 +51,20 @@ class QueryTable extends React.Component {
if (q.endDttm) {
q.duration = fDuration(q.startDttm, q.endDttm);
}
q.userId = (
q.user = (
<button
className="btn btn-link btn-xs"
onClick={this.props.onUserClicked.bind(this, q.userId)}
>
{q.userId}
{q.user}
</button>
);
q.dbId = (
q.db = (
<button
className="btn btn-link btn-xs"
onClick={this.props.onDbClicked.bind(this, q.dbId)}
>
{q.dbId}
{q.db}
</button>
);
q.started = moment(q.startDttm).format('HH:mm:ss');
Expand Down
3 changes: 3 additions & 0 deletions caravel/models.py
Expand Up @@ -2006,6 +2006,7 @@ class Query(Model):

database = relationship(
'Database', foreign_keys=[database_id], backref='queries')
user = relationship('User', backref='queries', foreign_keys=[user_id])

__table_args__ = (
sqla.Index('ti_user_id_changed_on', user_id, changed_on),
Expand All @@ -2020,6 +2021,7 @@ def to_dict(self):
'changedOn': self.changed_on,
'changed_on': self.changed_on.isoformat(),
'dbId': self.database_id,
'db': self.database.database_name,
'endDttm': self.end_time,
'errorMessage': self.error_message,
'executedSql': self.executed_sql,
Expand All @@ -2037,6 +2039,7 @@ def to_dict(self):
'tab': self.tab_name,
'tempTable': self.tmp_table_name,
'userId': self.user_id,
'user': self.user.username,
'limit_reached': self.limit_reached,
}

Expand Down

0 comments on commit 5c5b393

Please sign in to comment.