Skip to content

Commit

Permalink
add full unified
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 committed Nov 26, 2024
1 parent 0992b2f commit e4a8ef1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions website/docs/reference/dbt-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,14 @@ col.numeric_type('numeric', 12, 4) # numeric(12,4)

### Properties

- **name**: Returns the name of the column
- **char_size**: Returns the maximum size for character varying columns

Check warning on line 101 in website/docs/reference/dbt-classes.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/dbt-classes.md#L101

[custom.Typos] Oops there's a typo -- did you really mean 'char_size'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'char_size'? ", "location": {"path": "website/docs/reference/dbt-classes.md", "range": {"start": {"line": 101, "column": 5}}}, "severity": "WARNING"}
- **column**: Returns the name of the column
- **data_type**: Returns the data type of the column (with size/precision/scale included)

Check warning on line 103 in website/docs/reference/dbt-classes.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/dbt-classes.md#L103

[custom.Typos] Oops there's a typo -- did you really mean 'data_type'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'data_type'? ", "location": {"path": "website/docs/reference/dbt-classes.md", "range": {"start": {"line": 103, "column": 5}}}, "severity": "WARNING"}
- **dtype**: Returns the data type of the column (without any size/precision/scale included)
- **name**: Returns the name of the column (alias for column)
- **numeric_precision**: Returns the maximum precision for fixed decimal columns

Check warning on line 106 in website/docs/reference/dbt-classes.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/dbt-classes.md#L106

[custom.Typos] Oops there's a typo -- did you really mean 'numeric_precision'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'numeric_precision'? ", "location": {"path": "website/docs/reference/dbt-classes.md", "range": {"start": {"line": 106, "column": 5}}}, "severity": "WARNING"}
- **numeric_scale**: Returns the maximum scale for fixed decimal columns

Check warning on line 107 in website/docs/reference/dbt-classes.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/dbt-classes.md#L107

[custom.Typos] Oops there's a typo -- did you really mean 'numeric_scale'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'numeric_scale'? ", "location": {"path": "website/docs/reference/dbt-classes.md", "range": {"start": {"line": 107, "column": 5}}}, "severity": "WARNING"}
- **quoted**: Returns the name of the column wrapped in quotes
- **data_type**: Returns the data type of the column

### Instance methods

Expand Down

0 comments on commit e4a8ef1

Please sign in to comment.