github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/storage/testdata/time_bound_props (about)

     1  # build
     2  # key/0 timestamp=value
     3  # key/timestamp value
     4  # ...
     5  # ----
     6  
     7  build
     8  a/2 b
     9  a/1 c
    10  ----
    11  crdb.ts.max: 0000000000000002
    12  crdb.ts.min: 0000000000000001
    13  
    14  build
    15  a/0 timestamp=2
    16  a/2 b
    17  a/1 c
    18  ----
    19  crdb.ts.max: 0000000000000002
    20  crdb.ts.min: 0000000000000001
    21  
    22  build
    23  a/0 timestamp=2
    24  ----
    25  crdb.ts.max: 0000000000000002
    26  crdb.ts.min: 0000000000000002
    27  
    28  # Note that this case should never happen. We can't have an intent on
    29  # "a" without a corresponding timestamped value.
    30  
    31  build
    32  a/0 timestamp=2
    33  b/0 timestamp=3
    34  ----
    35  crdb.ts.max: 0000000000000003
    36  crdb.ts.min: 0000000000000003
    37  
    38  # Note that this case should never happen. The timestamp in the intent
    39  # on "a" should match the subsequent timestamped value.
    40  
    41  build
    42  a/0 timestamp=3
    43  a/1 b
    44  ----
    45  crdb.ts.max: 0000000000000001
    46  crdb.ts.min: 0000000000000001