Skip to content

Commit

Permalink
Re-enable disabled json test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktobey committed Feb 7, 2025
1 parent 34f9158 commit c6d7f65
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions integration-tests/bats/json.bats
Original file line number Diff line number Diff line change
Expand Up @@ -272,14 +272,10 @@ SQL

dolt sql -f $BATS_TEST_DIRNAME/json-large-value-insert.sql

# TODO: Retrieving the JSON errors with a JSON truncated message
# Unskip this once the JSON truncation issue is fixed and
# fill in the expected length below.
skip "Function Support is currently disabled"

dolt sql -q "SELECT pk, length(j1) FROM t;" -r csv
run dolt sql -q "SELECT pk, length(j1) FROM t;" -r csv
[ "$status" -eq 0 ]
[ "${lines[1]}" = '1,???' ]
[ "${lines[1]}" = '1,3145771' ]
}

# This test inserts a large JSON document with the `dolt_dont_optimize_json` flag set.
Expand Down

0 comments on commit c6d7f65

Please sign in to comment.