> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify-poc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# parsing_none()

> Skip the parsing step for textual data

Skip the parsing step. Only appropriate for textual data that doesn't require parsing.

## Samples

### Skip parsing for text data

```sql theme={"dark"}
SELECT ai.create_vectorizer(
    'text_content'::regclass,
    loading => ai.loading_column('content'),
    parsing => ai.parsing_none(),
    embedding => ai.embedding_openai('text-embedding-3-small', 768)
);
```

## Arguments

This function takes no arguments.

## Returns

A JSON configuration object for use in [`create_vectorizer()`][create_vectorizer].

## Related functions

* [`parsing_auto()`][parsing_auto]: automatically select parser based on file type
* [`loading_column()`][loading_column]: load text data from a column

[create_vectorizer]: /api-reference/pgai/vectorizer/create_vectorizer

[loading_column]: /api-reference/pgai/vectorizer/loading_column

[parsing_auto]: /api-reference/pgai/vectorizer/parsing_auto
