> For the complete documentation index, see [llms.txt](https://docs.postgresql.tw/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.postgresql.tw/11/the-sql-language/data-types/8.19.-pglsn-xing-bie.md).

# 8.19. pg\_lsn型別

The`pg_lsn`data type can be used to store LSN (Log Sequence Number) data which is a pointer to a location in the WAL. This type is a representation of`XLogRecPtr`and an internal system type ofPostgreSQL.

Internally, an LSN is a 64-bit integer, representing a byte position in the write-ahead log stream. It is printed as two hexadecimal numbers of up to 8 digits each, separated by a slash; for example,`16/B374D848`. The`pg_lsn`type supports the standard comparison operators, like`=`and`>`. Two LSNs can be subtracted using the`-`operator; the result is the number of bytes separating those write-ahead log locations.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.postgresql.tw/11/the-sql-language/data-types/8.19.-pglsn-xing-bie.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
