We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ec6cd commit d161a11Copy full SHA for d161a11
pkg/sql/sem/tree/datumrange/range.go
@@ -37,16 +37,16 @@ import (
37
// [\bluejay - \boar] represents the after range.
38
//
39
// bear := [18 98 101 97 114 0 1 ]
40
-// => [101 97 114 0 0 0 0 0 ]
+// => [101 97 114 0 1 0 0 0 ]
41
42
// bluejay := [18 98 108 117 101 106 97 121 0 1]
43
-// => [108 117 101 106 97 121 0 0 ]
+// => [108 117 101 106 97 121 0 1 ]
44
45
// boar := [18 98 111 97 114 0 1 ]
46
-// => [111 97 114 0 0 0 0 0 ]
+// => [111 97 114 0 1 0 0 0 ]
47
48
// bobcat := [18 98 111 98 99 97 116 0 1 ]
49
-// => [111 98 99 97 116 0 0 0 ]
+// => [111 98 99 97 116 0 1 0 ]
50
51
// We can now find the range before/after by finding the difference between
52
// the lower and upper bounds:
0 commit comments