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

Fixes #103

Merged
merged 5 commits into from Nov 28, 2011
Merged

Fixes #103

merged 5 commits into from Nov 28, 2011

Conversation

s3u
Copy link
Member

@s3u s3u commented Nov 26, 2011

  1. Support multiple requests made for the same statement - earlier we were dropping all but the lost. Several users found the text about gutter confusing. So, drop all that.

  2. Also fix a bug where carr in "f" in the script below was getting substituted.

    a = true;
    b = false;
    c = [1,2,3,4];
    d = [1, true, 3, false];
    e = "hello";
    f = {
    "a": "A",
    "b": "B",
    "carr": ["a", "b", "c"]
    };
    g = {};
    return f;

The result should be

{
"a": "A",
"b": "B",
"carr": [
  "a",
  "b",
  "c"
 ]
}

But the result before the fix was

{
  "a": "A",
  "b": "B",
  "carr": [
    true,
    "b",
    [1,2,3,4]]
} 
  1. Fix number parsing bugs.

Subbu Allamaraju added 5 commits November 25, 2011 11:09
Support multiple requests made for the same statement - earlier we were dropping all but the lost

Several users found the text about gutter confusing. So, drop all that.
prabhakhar pushed a commit that referenced this pull request Nov 28, 2011
@prabhakhar prabhakhar merged commit b7a7dc0 into ql-io:master Nov 28, 2011
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.

None yet

2 participants