From a0e85dbbc38aadbd05360b07da01940f633c49ca Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sat, 14 Oct 2023 06:47:14 -0400 Subject: [PATCH] test(docstests): nan -> NULL --- ibis/expr/types/generic.py | 4 ++-- ibis/expr/types/groupby.py | 2 +- ibis/expr/types/relations.py | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ibis/expr/types/generic.py b/ibis/expr/types/generic.py index a890579811fb8..88f0dd5f2441d 100644 --- a/ibis/expr/types/generic.py +++ b/ibis/expr/types/generic.py @@ -120,7 +120,7 @@ def cast(self, target_type: Any) -> Value: │ 18.7 │ │ 17.4 │ │ 18.0 │ - │ nan │ + │ NULL │ │ 19.3 │ │ 20.6 │ │ 17.8 │ @@ -335,7 +335,7 @@ def typeof(self) -> ir.StringValue: │ 39.1 │ │ 39.5 │ │ 40.3 │ - │ nan │ + │ NULL │ │ 36.7 │ └────────────────┘ >>> vals.typeof() diff --git a/ibis/expr/types/groupby.py b/ibis/expr/types/groupby.py index b27135bd0e7c6..3e3a5ce867716 100644 --- a/ibis/expr/types/groupby.py +++ b/ibis/expr/types/groupby.py @@ -185,7 +185,7 @@ def mutate( │ Adelie │ Torgersen │ 39.1 │ 18.7 │ 181 │ … │ │ Adelie │ Torgersen │ 39.5 │ 17.4 │ 186 │ … │ │ Adelie │ Torgersen │ 40.3 │ 18.0 │ 195 │ … │ - │ Adelie │ Torgersen │ nan │ nan │ NULL │ … │ + │ Adelie │ Torgersen │ NULL │ NULL │ NULL │ … │ │ Adelie │ Torgersen │ 36.7 │ 19.3 │ 193 │ … │ │ Adelie │ Torgersen │ 39.3 │ 20.6 │ 190 │ … │ │ Adelie │ Torgersen │ 38.9 │ 17.8 │ 181 │ … │ diff --git a/ibis/expr/types/relations.py b/ibis/expr/types/relations.py index 2fb39a8225f3c..9ef790204a504 100644 --- a/ibis/expr/types/relations.py +++ b/ibis/expr/types/relations.py @@ -314,7 +314,7 @@ def try_cast(self, schema: SupportsSchema) -> Table: ├───────┼─────────┤ │ 1 │ 2.2 │ │ 2 │ 3.3 │ - │ 3 │ nan │ + │ 3 │ NULL │ └───────┴─────────┘ """ return self._cast(schema, cast_method="try_cast") @@ -507,7 +507,7 @@ def __getitem__(self, what): │ string │ string │ float64 │ float64 │ int64 │ … │ ├─────────┼───────────┼────────────────┼───────────────┼───────────────────┼───┤ │ Adelie │ Torgersen │ 40.3 │ 18.0 │ 195 │ … │ - │ Adelie │ Torgersen │ nan │ nan │ NULL │ … │ + │ Adelie │ Torgersen │ NULL │ NULL │ NULL │ … │ │ Adelie │ Torgersen │ 36.7 │ 19.3 │ 193 │ … │ │ Adelie │ Torgersen │ 39.3 │ 20.6 │ 190 │ … │ │ Adelie │ Torgersen │ 38.9 │ 17.8 │ 181 │ … │ @@ -1791,7 +1791,7 @@ def select( │ Torgersen │ 39.1 │ │ Torgersen │ 39.5 │ │ Torgersen │ 40.3 │ - │ Torgersen │ nan │ + │ Torgersen │ NULL │ │ Torgersen │ 36.7 │ └───────────┴────────────────┘