Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Respect already quoted collection name in column #62

Merged
merged 2 commits into from
Oct 22, 2013

Conversation

brianc
Copy link
Contributor

@brianc brianc commented Oct 22, 2013

Previous you could not use a schema other than public and
quoted collection names were being 'double quoted' in columns

Previous you could not use a schema other than public and
quoted collection names were being 'double quoted' in columns
@@ -46,8 +46,12 @@ define(function(require, exports, module){
return '"' + collection + '".' + field;

// No collection, no quotes
else if (collection)
else if (collection) {
if(collection.indexOf('"') > -1) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two things - can you update the comment to reflect the situation (that's the biggest thing!) and while you're in there just put a darn space between that if and (

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no prob sorry i missed that

@jrf0110
Copy link
Member

jrf0110 commented Oct 22, 2013

Also, thanks for the PR XOXOXOXO ❤️

@brianc
Copy link
Contributor Author

brianc commented Oct 22, 2013

Bam - updated. xoxo

jrf0110 added a commit that referenced this pull request Oct 22, 2013
Respect already quoted collection name in column
@jrf0110 jrf0110 merged commit 7de9b1c into goodybag:master Oct 22, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants