@@ -108,35 +108,13 @@ def schema(self, schema):
108108 @since (1.5 )
109109 def option (self , key , value ):
110110 """Adds an input option for the underlying data source.
111-
112- You can set the following option(s) for reading files:
113- * ``pathGlobFilter``: an optional glob pattern to only include files with paths matching
114- the pattern. The syntax follows org.apache.hadoop.fs.GlobFilter.
115- It does not change the behavior of partition discovery.
116- * ``modifiedBefore``: an optional timestamp to only include files with
117- modification times occurring before the specified time. The provided timestamp
118- must be in the following format: YYYY-MM-DDTHH:mm:ss (e.g. 2020-06-01T13:00:00)
119- * ``modifiedAfter``: an optional timestamp to only include files with
120- modification times occurring after the specified time. The provided timestamp
121- must be in the following format: YYYY-MM-DDTHH:mm:ss (e.g. 2020-06-01T13:00:00)
122111 """
123112 self ._jreader = self ._jreader .option (key , to_str (value ))
124113 return self
125114
126115 @since (1.4 )
127116 def options (self , ** options ):
128117 """Adds input options for the underlying data source.
129-
130- You can set the following option(s) for reading files:
131- * ``pathGlobFilter``: an optional glob pattern to only include files with paths matching
132- the pattern. The syntax follows org.apache.hadoop.fs.GlobFilter.
133- It does not change the behavior of partition discovery.
134- * ``modifiedBefore``: an optional timestamp to only include files with
135- modification times occurring before the specified time. The provided timestamp
136- must be in the following format: YYYY-MM-DDTHH:mm:ss (e.g. 2020-06-01T13:00:00)
137- * ``modifiedAfter``: an optional timestamp to only include files with
138- modification times occurring after the specified time. The provided timestamp
139- must be in the following format: YYYY-MM-DDTHH:mm:ss (e.g. 2020-06-01T13:00:00)
140118 """
141119 for k in options :
142120 self ._jreader = self ._jreader .option (k , to_str (options [k ]))
0 commit comments