We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Deletion by importing a value of false doesn't work for string values. For example, import the following:
false
{"channel_names":["foobar"], "data":[ [1445624602,"this is a string value"], []]}
Then call export (here, requesting JSON output) to verify the data:
./bin/export ./data-dev 1 --json feed_34.foobar
Export output should look like this:
{"channel_names":["feed_34.foobar"],"data":[ [1445624602,"this is a string value"] ]}
Then do another import, attempting to delete the value by specifying a false value:
{"channel_names":["foobar"], "data":[ [1445624602,false], []]}
But, if you do another export, you'll see that the string value is still there, as above.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deletion by importing a value of
false
doesn't work for string values. For example, import the following:Then call export (here, requesting JSON output) to verify the data:
./bin/export ./data-dev 1 --json feed_34.foobar
Export output should look like this:
Then do another import, attempting to delete the value by specifying a
false
value:But, if you do another export, you'll see that the string value is still there, as above.
The text was updated successfully, but these errors were encountered: