We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2158818 commit 8753bddCopy full SHA for 8753bdd
bigframes/exceptions.py
@@ -47,6 +47,10 @@ class NullIndexError(ValueError):
47
"""Object has no index."""
48
49
50
+class OrderingModePartialPreviewWarning(PreviewWarning):
51
+ """Ordering mode 'partial' is in preview."""
52
+
53
54
class OrderRequiredError(ValueError):
55
"""Operation requires total row ordering to be enabled."""
56
bigframes/session/__init__.py
@@ -302,7 +302,7 @@ def __init__(
302
if not self._strictly_ordered:
303
warnings.warn(
304
"Partial ordering mode is a preview feature and is subject to change.",
305
- bigframes.exceptions.PreviewWarning,
+ bigframes.exceptions.OrderingModePartialPreviewWarning,
306
)
307
308
# Sequential index needs total ordering to generate, so use null index with unstrict ordering.
0 commit comments